update for HEAD-2003091401
[reactos.git] / lib / msvcrt / ctype / isupper.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/ctype.h>
3
4
5 #undef isupper
6 /*
7  * @implemented
8  */
9 int isupper(int c)
10 {
11     return _isctype(c, _UPPER);
12 }
13
14 /*
15  * @implemented
16  */
17 int iswupper(wint_t c)
18 {
19     return iswctype(c, _UPPER);
20 }