OSDN Git Service

968dcf738c9cfb7f534d6fb3be0334cd754216fd
[pf3gnuchains/pf3gnuchains3x.git] / newlib / libc / ctype / _tolower.c
1 #include <_ansi.h>
2 #include <ctype.h>
3
4 #undef _tolower
5 int
6 _DEFUN(_tolower,(c),int c)
7 {
8         return isupper(c) ? (c) - 'A' + 'a' : c;
9 }