shithub: scc

ref: 12934f8fb43662ca8bc906caaad5f5e8ccbb6bc1
dir: /lib/c/ctype/tolower.c/

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

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