From 8b1fab2879d57b044342ee3fece0825d4d3a509a Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Tue, 10 Apr 2007 09:38:07 +0000 Subject: - add prototype for str_tolower() --- include/libbb.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') 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); -- cgit v1.2.3