#include "types.h"#include "stat.h"#include "fcntl.h"#include "user.h"#include "x86.h"Go to the source code of this file.
Functions | |
| char * | strcpy (char *s, char *t) |
| int | strcmp (const char *p, const char *q) |
| uint | strlen (char *s) |
| void * | memset (void *dst, int c, uint n) |
| char * | strchr (const char *s, char c) |
| char * | gets (char *buf, int max) |
| int | stat (char *n, struct stat *st) |
| int | atoi (const char *s) |
| void * | memmove (void *vdst, void *vsrc, int n) |
| void * | memcpy (void *dst, const void *src, uint n) |
| char* gets | ( | char * | buf, | |
| int | max | |||
| ) |
| void* memcpy | ( | void * | dst, | |
| const void * | src, | |||
| uint | n | |||
| ) |
| void* memset | ( | void * | dst, | |
| int | c, | |||
| uint | n | |||
| ) |
Definition at line 37 of file ulib.c.
References stosb().
Referenced by allocproc(), backcmd(), bigfile(), bzero(), cgaputc(), concreate(), exec(), execcmd(), fmtname(), getcmd(), growproc(), ialloc(), kfree(), listcmd(), pipecmd(), redircmd(), sharedfd(), sys_exec(), sys_unlink(), twofiles(), and userinit().
| char* strchr | ( | const char * | s, | |
| char | c | |||
| ) |
| char* strcpy | ( | char * | s, | |
| char * | t | |||
| ) |
1.5.6