- add prototype for str_tolower()

This commit is contained in:
Bernhard Reutner-Fischer 2007-04-10 09:38:07 +00:00
parent 7e8a53a335
commit 8b1fab2879

View File

@ -439,6 +439,8 @@ extern FILE *fopen_or_warn(const char *filename, const char *mode);
/* "Opens" stdin if filename is special, else just opens file: */
extern FILE *fopen_or_warn_stdin(const char *filename);
/* Convert each alpha char in str to lower-case */
extern char* str_tolower(char *str);
char *utoa(unsigned n);
char *itoa(int n);