Welcome to mirror list, hosted at ThFree Co, Russian Federation.

str_tolower.c « libbb - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 037f717c745f1410ba2c38ef5a886c5fa4f79553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}