:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / ctype / isxdigit.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/ctype.h>
3
4 #undef isxdigit
5 int isxdigit(int c)
6 {
7  return _isctype(c,_HEX);
8 }
9
10 #undef iswxdigit
11 int iswxdigit(wint_t c)
12 {
13  return iswctype(c,_HEX);
14 }
15