strlwr |
Converts a string to lowercase |
strupr |
Converts a string to uppercase |
strcat |
Appends one string at the end of another |
strncat |
Appends first n characters of a string at the end of another |
strcpy |
Copies a string into another |
strncpy |
Copies first n characters of one string into another |
strncmp |
Compares first n characters of two strings |
strcmpi |
Compares two strings without regard to case ("i" denotes that this function ignores case) |
stricmp |
Compares two strings without regard to case (identical to strcmpi) |
strnicmp |
Compares first n characters of two strings without regard to case |
strchr |
Finds first occurrence of a given character in a string |