Fixes so we don't use any of the standard include paths

This commit is contained in:
Ronald G. Minnich 2000-10-17 22:58:51 +00:00
commit 787deb4ae4
10 changed files with 40 additions and 53 deletions

13
src/include/string.h Normal file
View file

@ -0,0 +1,13 @@
// yes, linux has fancy ones. We don't care. This stuff gets used
// hardly at all. And the pain of including those files is just too high.
//extern inline void strcpy(char *dst, char *src) {while (*src) *dst++ = *src++;}
//extern inline int strlen(char *src) { int i = 0; while (*src++) i++; return i;}
extern inline int strnlen(const char *src, int max) {
int i = 0;
while ((*src++) && (i < max))
i++;
return i;
}