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