Reorganize header files

This commit is contained in:
Guillem Jover
2005-10-31 22:57:10 +00:00
parent 5c2938f589
commit 657f1b59ce
10 changed files with 297 additions and 268 deletions

11
include/bsd/string.h Normal file
View File

@@ -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