diff options
Diffstat (limited to 'user.h')
-rw-r--r-- | user.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -18,10 +18,13 @@ int link(char *, char *); int mkdir(char *); int chdir(char *); int dup(int); +int getpid(); int stat(char *, struct stat *stat); int puts(char*); char* strcpy(char*, char*); +char *strchr(const char *s, char c); +int strcmp(const char *p, const char *q); void printf(int fd, char *fmt, ...); char *gets(char *, int max); unsigned int strlen(char *); |