Declaration of the titlecase() function, for making a word lowercase with the first letter uppercase. More...
Go to the source code of this file.
Macros | |
#define | __TITLECASE_H__ |
Functions | |
char * | titlecase (const char *s) |
Convert the first word (or only word) in the given string to lowercase then make the first letter uppercase. It does not touch any of the other words after the first. | |
Declaration of the titlecase() function, for making a word lowercase with the first letter uppercase.
Definition in file helpers/titlecase.h.
#define __TITLECASE_H__ |
Definition at line 8 of file helpers/titlecase.h.
char * titlecase | ( | const char * | s | ) |
Convert the first word (or only word) in the given string to lowercase then make the first letter uppercase. It does not touch any of the other words after the first.
Note that this is not locale-sensitive.
s | A string to work on. |
Definition at line 15 of file titlecase.c.
Referenced by Interpreter_Interpret().