- add libbb function str_tolower to convert a string to lowercase.
- shrink wget a bit
This commit is contained in:
13
libbb/str_tolower.c
Normal file
13
libbb/str_tolower.c
Normal file
@@ -0,0 +1,13 @@
|
||||
/* vi set: sw=4 ts=4: */
|
||||
/* Convert string str to lowercase, return str.
|
||||
*
|
||||
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
||||
*/
|
||||
#include "libbb.h"
|
||||
char* str_tolower(char *str)
|
||||
{
|
||||
char *c;
|
||||
for (c = str; *c; ++c)
|
||||
*c = tolower(*c);
|
||||
return str;
|
||||
}
|
||||
Reference in New Issue
Block a user