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