summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
439/* "Opens" stdin if filename is special, else just opens file: */ 439/* "Opens" stdin if filename is special, else just opens file: */
440extern FILE *fopen_or_warn_stdin(const char *filename); 440extern FILE *fopen_or_warn_stdin(const char *filename);
441 441
442/* Convert each alpha char in str to lower-case */
443extern char* str_tolower(char *str);
442 444
443char *utoa(unsigned n); 445char *utoa(unsigned n);
444char *itoa(int n); 446char *itoa(int n);