blob: f402e8e6f6a75ef219a7e0530b3cbfbfe92915ac [file] [log] [blame]
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +00001/* vi set: sw=4 ts=4: */
2/* Convert string str to lowercase, return str.
3 *
4 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
5 */
6#include "libbb.h"
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00007
8char* FAST_FUNC str_tolower(char *str)
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +00009{
10 char *c;
11 for (c = str; *c; ++c)
12 *c = tolower(*c);
13 return str;
14}