Intermediate stage in reincorporating old libc into userspace tasks.

This commit is contained in:
Bahadir Balban
2009-08-29 14:29:57 +03:00
parent 9e894274a3
commit 779429d289
179 changed files with 12922 additions and 918 deletions

View File

@@ -1,11 +0,0 @@
#ifndef __LIB_STRING_H__
#define __LIB_STRING_H__
int strlen(const char *s);
char *strcpy(char *to, const char *from);
char *strncpy(char *dest, const char *src, int count);
int strcmp(const char *s1, const char *s2);
void *memset(void *p, int c, int size);
void *memcpy(void *d, void *s, int size);
#endif /* __LIB_STRING_H__ */