UNIX xv6 (rev8, 9/1/15)
|
Go to the source code of this file.
Functions | |
void * | memset (void *dst, int c, uint n) |
int | memcmp (const void *v1, const void *v2, uint n) |
void * | memmove (void *dst, const void *src, uint n) |
void * | memcpy (void *dst, const void *src, uint n) |
int | strncmp (const char *p, const char *q, uint n) |
char * | strncpy (char *s, const char *t, int n) |
char * | safestrcpy (char *s, const char *t, int n) |
int | strlen (const char *s) |