(svn r5684) - Codechange: create an strtolower() function that uses tolower() on a whole string and apply it in the places this was used.

This commit is contained in:
Darkvater
2006-07-31 22:11:34 +00:00
parent cc88f3591f
commit 01f11b9970
4 changed files with 24 additions and 29 deletions

View File

@@ -29,6 +29,9 @@ char* CDECL str_fmt(const char* str, ...);
* replaces them with a question mark '?' */
void str_validate(char *str);
/** Convert the given string to lowercase */
void strtolower(char *str);
/** Only allow valid ascii-function codes. Filter special codes like BELL and
* so on [we need a special filter here later]
* @param key character to be checked