V9/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 += 'A' - 'a';
	return(c);
}