|
|
|
| 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 |
|
|