V10/libc/gen/toupper.c

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

int
toupper(c)
register int c;
{
	if(c >= 'a' && c <= 'z')
		c &= ~040;
	return(c);
}