shithub: scc

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