|
|
|
| 1 |
|
// cwctype standard header |
| 2 |
|
#pragma once |
| 3 |
|
#ifndef _CWCTYPE_ |
| 4 |
|
#define _CWCTYPE_ |
| 5 |
|
#include <yvals.h> |
| 6 |
|
|
| 7 |
|
#ifdef _STD_USING |
| 8 |
|
#undef _STD_USING |
| 9 |
|
#include <wctype.h> |
| 10 |
|
#define _STD_USING |
| 11 |
|
|
| 12 |
|
#else /* _STD_USING */ |
| 13 |
|
#include <wctype.h> |
| 14 |
|
#endif /* _STD_USING */ |
| 15 |
|
|
| 16 |
|
#ifndef RC_INVOKED |
| 17 |
|
#if _GLOBAL_USING |
| 18 |
|
_STD_BEGIN |
| 19 |
|
using ::wint_t; using ::wctrans_t; using ::wctype_t; |
| 20 |
|
|
| 21 |
|
using ::iswalnum; using ::iswalpha; using ::iswcntrl; |
| 22 |
|
using ::iswctype; using ::iswdigit; using ::iswgraph; |
| 23 |
|
using ::iswlower; using ::iswprint; using ::iswpunct; |
| 24 |
|
using ::iswspace; using ::iswupper; using ::iswxdigit; |
| 25 |
|
using ::towctrans; using ::towlower; using ::towupper; |
| 26 |
|
using ::wctrans; using ::wctype; |
| 27 |
|
_STD_END |
| 28 |
|
#endif /* _GLOBAL_USING */ |
| 29 |
|
#endif /* RC_INVOKED */ |
| 30 |
|
|
| 31 |
|
/* remove any (improper) macro overrides */ |