memchr | Search for a character in a memory area |
memcmp | Compare two memory areas |
memcpy | Copy a memory area |
memmove | Copy a memory area with overlap checking |
memset | Initialize a memory area with a certain value |
strcat | Append a string |
strchr | Search for a character is a string |
strcmp | Compare two strings |
strcoll | Compare two strings using the current locale settings |
strcpy | Copy a string |
strcspn | Search for a set characters in a string |
strerror | Convert an error value into a printable string |
strlen | Calculate the length of a string |
strncat | Append a string with specified length |
strncmp | Compare two strings with specified length |
strncpy | Copy a string with specified length |
strpbrk | Search for any of a set of characters in a string |
strrchr | Backward search for a character is a string |
strspn | Search for a set characters in a string |
strstr | Search for a substring in a string |
strtok | Extract tokens from a string |
strxfrm | Transform a string using the current locale settings |