aboutsummaryrefslogtreecommitdiff
path: root/libbb/str_tolower.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/str_tolower.c')
-rw-r--r--libbb/str_tolower.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libbb/str_tolower.c b/libbb/str_tolower.c
index 037f717c7..f402e8e6f 100644
--- a/libbb/str_tolower.c
+++ b/libbb/str_tolower.c
@@ -4,7 +4,8 @@
4 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 4 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
5 */ 5 */
6#include "libbb.h" 6#include "libbb.h"
7char* str_tolower(char *str) 7
8char* FAST_FUNC str_tolower(char *str)
8{ 9{
9 char *c; 10 char *c;
10 for (c = str; *c; ++c) 11 for (c = str; *c; ++c)