From: Bernhard Reutner-Fischer Date: Tue, 10 Apr 2007 09:38:07 +0000 (-0000) Subject: - add prototype for str_tolower() X-Git-Tag: 1_6_0~204 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8b1fab2879d57b044342ee3fece0825d4d3a509a;p=oweals%2Fbusybox.git - add prototype for str_tolower() --- diff --git a/include/libbb.h b/include/libbb.h index 8e3f4023c..2cb914eda 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -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);