Minix2.0/src/lib/ansi/toupper.c

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

#include	<ctype.h>

int toupper(int c) {
	return islower(c) ? c - 'a' + 'A' : c ;
}