shithub: scc

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