shithub: scc

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