OSDN Git Service

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