shithub: scc

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