1 // cctype standard header
2 #pragma once
3 #ifndef _CCTYPE_
4 #define _CCTYPE_
5 #include <yvals.h>
6
7
8 #ifdef _STD_USING
9  #undef _STD_USING
10   #include <ctype.h>
11  #define _STD_USING
12
13 #else /* _STD_USING */
14  #include <ctype.h>
15 #endif /* _STD_USING */
16
17 #ifndef RC_INVOKED
18  #if _GLOBAL_USING
19 _STD_BEGIN
20 using ::isalnum; using ::isalpha; using ::iscntrl;
21 using ::isdigit; using ::isgraph; using ::islower;
22 using ::isprint; using ::ispunct; using ::isspace;
23 using ::isupper; using ::isxdigit; using ::tolower;
24 using ::toupper;
25
26
27 _STD_END
28  #endif /* _GLOBAL_USING */
29 #endif /* RC_INVOKED */
30
Lines 31 ... 40 are skipped.
41 #undef isspace
42 #undef isupper
43 #undef isxdigit
44 #undef tolower
45 #undef toupper
46 #endif /* _CCTYPE_ */
47
48 /*
49  * Copyright (c) 1992-2006 by P.J. Plauger.  ALL RIGHTS RESERVED.
50  * Consult your license regarding permissions and restrictions.
51  V5.02:0009 */
52