SM - Sorry, I forgot silence dbg messages!
[reactos.git] / reactos / lib / crt / ctype / isupper.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: msvcrt/ctype/isupper.c
5 * PURPOSE: C Runtime
6 * PROGRAMMER: Copyright (C) 1995 DJ Delorie
7 */
8
9 #include <msvcrt/ctype.h>
10
11 #undef isupper
12 /*
13 * @implemented
14 */
15 int isupper(int c)
16 {
17 return _isctype(c, _UPPER);
18 }
19
20 /*
21 * @implemented
22 */
23 int iswupper(wint_t c)
24 {
25 return iswctype(c, _UPPER);
26 }