shithub: scc

ref: 272bc8e3488ce5c7220ebf7cc731a04211b6dba4
dir: /src/libc/ctype/tolower.c/

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

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