|
libcfe
0.12.1
some useful C-functions
|
Go to the source code of this file.
Functions | |
| char * | string_to_lower (const char *in) |
| char * | string_to_upper (const char *in) |
| char* string_to_lower | ( | const char * | in | ) |
Turn all the letters in a string to its lowercase equivalent, the result is returned as a new allocated string.
| [in] | in | Pointer to the input string. |
Definition at line 10 of file string_case_conversion.c.
| char* string_to_upper | ( | const char * | in | ) |
Turn all the letters in a string to its uppercase equivalent, the result is returned as a new allocated string.
| [in] | in | Pointer to the input string. |
Definition at line 23 of file string_case_conversion.c.