_strerror
|
Get a system error message
|
memchr
|
Finds characters in a buffer
|
memcmp
|
Compare characters in two buffers
|
memcpy
|
The value of dest
|
memmove
|
Copies count bytes of characters from src to dest
|
memset
|
Sets buffers to a specified character
|
strcat
|
Append a string
|
strchr
|
Find a character in a string
|
strcmp
|
Compare strings
|
strcoll
|
Compare strings using locale-specific information
|
strcpy
|
Copy a string
|
strcspn
|
Scans a string for the initial segment not containing any subset of a given set of characters
|
strlen
|
Get the length of a string
|
strncat
|
Append characters of a string
|
strncmp
|
Compare characters of two strings
|
strncpy
|
Copy characters of one string to another
|
strpbrk
|
Scan strings for characters in specified character sets
|
strrchr
|
Find a character in a string
|
strspn
|
Find the first substring
|
strstr
|
Find a substring
|
strtok
|
Find the next token in a string
|
strxfrm
|
Transform a string based on locale-specific information
|