minix/lib/libc/ansi/toupper.c

6 lines
84 B
C

#include <ctype.h>
int toupper(int c) {
return islower(c) ? c - 'a' + 'A' : c ;
}