shithub: scc

ref: 7ce12b649649aa1f31cb4fb5007284a4128f29a6
dir: /lib/c/tolower.c/

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

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