Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / ctype / toupper.c
1 #include        <ctype.h>
2
3 int toupper(int c) {
4         return islower(c) ? c - 'a' + 'A' : c ;
5 }