Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-04-10 13:38:07 +0400
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-04-10 13:38:07 +0400
commit8b1fab2879d57b044342ee3fece0825d4d3a509a (patch)
tree75bc27594b1d1f477da5b54b0985ab20c8f2c649 /include
parent7e8a53a33576b8ac6b5067ff88447936ad9d422f (diff)
- add prototype for str_tolower()
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
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);