commit | 8b1fab2879d57b044342ee3fece0825d4d3a509a | [log] [tgz] |
---|---|---|
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | Tue Apr 10 09:38:07 2007 +0000 |
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | Tue Apr 10 09:38:07 2007 +0000 |
tree | 75bc27594b1d1f477da5b54b0985ab20c8f2c649 | |
parent | 7e8a53a33576b8ac6b5067ff88447936ad9d422f [diff] [blame] |
- add prototype for str_tolower()
diff --git a/include/libbb.h b/include/libbb.h index 8e3f402..2cb914e 100644 --- a/include/libbb.h +++ b/include/libbb.h
@@ -439,6 +439,8 @@ /* "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);