shithub: scc

ref: dc0bdaac8b9d8b9797ebbb8616c359e346981de7
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;
}