strlcpy.h 188 B

123456789101112
  1. #ifndef _STRLCPY_H_
  2. #define _STRLCPY_H_
  3. #include <sys/types.h>
  4. size_t
  5. strlcpy(char *dst, const char *src, size_t size);
  6. size_t
  7. strlcat(char *dst, const char *src, size_t size);
  8. #endif