update for HEAD-2003050101
[reactos.git] / lib / crtdll / ctype / isxdigit.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/ctype.h>
3
4
5 #undef isxdigit
6 int isxdigit(int c)
7 {
8     return _isctype(c, _HEX);
9 }
10
11 #undef iswxdigit
12 int iswxdigit(wint_t c)
13 {
14     return iswctype(c, _HEX);
15 }
16