update for HEAD-2003091401
[reactos.git] / lib / crtdll / ctype / isctype.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/ctype.h>
3
4
5 extern unsigned short _ctype[];
6
7 unsigned short *_pctype_dll = _ctype + 1;
8 unsigned short *_pwctype_dll = _ctype + 1;
9
10
11 /*
12  * @implemented
13  *
14  * this function is now forwarded to MSVCRT._isctype to reduce code duplication
15  */
16 #if 0
17 int _isctype(unsigned int c, int ctypeFlags)
18 {
19         return (_pctype_dll[(unsigned char)(c & 0xFF)] & ctypeFlags);
20 }
21 #endif
22
23 /*
24  * @implemented
25  *
26  * this function is now forwarded to MSVCRT.iswctype to reduce code duplication
27  */
28 #if 0
29 int iswctype(wint_t wc, wctype_t wctypeFlags)
30 {
31         return (_pwctype_dll[(unsigned char)(wc & 0xFF)] & wctypeFlags);
32 }
33 #endif
34
35 // obsolete
36 /*
37  * @implemented
38  *
39  * this function is now forwarded to MSVCRT.is_wctype to reduce code duplication
40  */
41 #if 0
42 int     is_wctype(wint_t wc, wctype_t wctypeFlags)
43 {
44         return (_pwctype_dll[(unsigned char)(wc & 0xFF)] & wctypeFlags);
45 }
46 #endif
47
48 /* EOF */