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

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

#include	<ctype.h>

int tolower(int c) {
	return isupper(c) ? c - 'A' + 'a' : c ;
}