shithub: scc

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