mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
11 lines
323 B
C
11 lines
323 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 */
|
|
|