Fixes so we don't use any of the standard include paths
This commit is contained in:
parent
ef20fb22dc
commit
787deb4ae4
10 changed files with 40 additions and 53 deletions
13
src/include/string.h
Normal file
13
src/include/string.h
Normal 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;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue