V9/libc/gen/tolower.c

Compare this file to the similar file:
Show the results in this format:

int
tolower(c)
register int c;
{
	if(c >= 'A' && c <= 'Z')
		c -= 'A' - 'a';
	return(c);
}