Hash : 657f1b59 Author : Date : 2005-10-31T22:57:10
Reorganize header files
Download
1 2 3 4 5 6 7 8 9 10 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