| 12345678910111213141516171819202122232425 |
- #ifndef _STRLCPY_H
- #define _STRLCPY_H
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include <sys/types.h>
- //#undef strlcpy
- //#undef strlcat
- #define strlcpy my_strlcpy
- #define strlcat my_strlcat
- #ifdef __cplusplus
- extern "C" {
- #endif
- size_t strlcpy(char *, const char *, size_t);
- size_t strlcat(char *, const char *, size_t);
- #ifdef __cplusplus
- }
- #endif
- #endif /* !_STRLCPY_H */
|