diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-04-10 09:38:07 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-04-10 09:38:07 +0000 |
commit | 8b1fab2879d57b044342ee3fece0825d4d3a509a (patch) | |
tree | 75bc27594b1d1f477da5b54b0985ab20c8f2c649 | |
parent | 7e8a53a33576b8ac6b5067ff88447936ad9d422f (diff) | |
download | busybox-8b1fab2879d57b044342ee3fece0825d4d3a509a.tar.gz |
- add prototype for str_tolower()
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
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); |