|
Go to the source code of this file.
Functions | |
char * | strtolower (char *str) |
Converts a string to all lower case. More... | |
char * | strtoupper (char *str) |
Converts a string to all upper case. More... | |
int | strcicmp (const char *s1, const char *s2) |
Case-insensitive string comparison. More... | |
Case-insensitive string comparison.
The original strings are not overwritten.
[in] | s1 | A C-string (char*) |
[in] | s2 | A C-string (char*) |
References strtolower().
Converts a string to all lower case.
The original string is overwritten.
[in] | str | A C-string (char*), that will be overwritten. |
References constants::i.
Referenced by strcicmp().