shithub: scc

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