blob: c2d563798b3b8ba24c31ffb734fd67e55d4ab96d [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02004 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Bernhard Reutner-Fischer7e8a53a2007-04-10 09:37:29 +00005 */
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}