mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2025-01-08 09:50:56 +00:00
10 lines
321 B
C
10 lines
321 B
C
|
/* header file for BSD strlcat and strlcpy */
|
||
|
|
||
|
#ifndef __STRLFUNCS_H
|
||
|
#define __STRLFUNCS_H
|
||
|
|
||
|
/* use our own copies of strlcpy and strlcat taken from OpenBSD */
|
||
|
extern size_t q_strlcpy (char *dst, const char *src, size_t size);
|
||
|
extern size_t q_strlcat (char *dst, const char *src, size_t size);
|
||
|
|
||
|
#endif /* __STRLFUNCS_H */
|