Xv6 with picoc & Linkage editor  v1.0
The project delineate mutual cohesion between c library, linkage editor ( linker), interpreter and operating system by porting the same on xv6 kernel
 All Data Structures
string.h
00001 #ifndef STRING_H
00002 #define STRING_H
00003 char* strcpy(char*, char*);
00004 char* strchr(const char*, char c);
00005 char* strcat(char *,char *);
00006 int strcmp(const char*, const char*);
00007 char *strrchr(const char *t, int c);
00008 uint strlen(char*);
00009 #endif
 All Data Structures