Include dependency graph for string.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | bzero(ptr, len) memset((ptr), 0, (len)) |
Functions | |
void * | memset (void *s, int c, size_t n) |
void * | memcpy (void *dest, const void *src, size_t n) |
void * | memmove (void *dest, const void *src, size_t n) |
int | strcmp (const char *, const char *) |
char * | strcpy (char *dest, const char *src) |
char * | strncpy (char *dest, const char *src, size_t n) |
size_t | strlen (const char *str) |
char * | strchr (const char *str, int c) |
char * | strrchr (const char *str, int c) |
long int | strtol (const char *nptr, char **endptr, int base) |
unsigned long | strtoul (const char *nptr, char **endptr, int base) |
Definition in file string.h.