diff options
Diffstat (limited to 'include/bsd/string.h')
-rw-r--r-- | include/bsd/string.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/bsd/string.h b/include/bsd/string.h new file mode 100644 index 0000000..ed31933 --- /dev/null +++ b/include/bsd/string.h @@ -0,0 +1,11 @@ +#ifndef LIBBSD_STRING_H +#define LIBBSD_STRING_H + +#include <sys/types.h> +#include <stdio.h> + +size_t strlcpy(char *dst, const char *src, size_t siz); +size_t strlcat(char *dst, const char *src, size_t siz); +char *fgetln(FILE *fp, size_t *lenp); + +#endif |