#include <types.h>
#include <arch/mem.h>
Go to the source code of this file.
Functions | |
int | strcmp (const char *s1, const char *s2) |
char * | strcpy (char *dest, const char *org) |
char * | strncpy (char *dest, const char *org, size_t n) |
size_t | strlen (const char *str) |
size_t | strnlen (const char *s, unsigned int count) |
int | strncmp (const char *s1, const char *s2, size_t n) |
char * | strcat (char *s, const char *append) |
char * | strncat (char *dest, const char *src, size_t count) |
char * | strstr (const char *s, const char *find) |
void | strtoupper (char *s) |
char * | strpbrk (const char *cs, const char *ct) |
Definition in file string.h.