shithub: scc

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