shithub: scc

ref: 563eadc3dd2e815868ba9c7fb93a81b2e0309072
dir: /lib/c/tolower.c/

View raw version
#define __USE_MACROS
#include <ctype.h>
#undef tolower

int
tolower(int c)
{
	return (isupper(c)) ? c | 0x20 : c;
}