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