-
Notifications
You must be signed in to change notification settings - Fork 47
/
cctype
executable file
·44 lines (36 loc) · 1.09 KB
/
cctype
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// cctype standard header (core)
// Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef _CCTYPE_
#define _CCTYPE_
#include <yvals_core.h>
#if _STL_COMPILER_PREPROCESSOR
#include <ctype.h>
#pragma pack(push, _CRT_PACKING)
#pragma warning(push, _STL_WARNING_LEVEL)
#pragma warning(disable : _STL_DISABLED_WARNINGS)
_STL_DISABLE_CLANG_WARNINGS
#pragma push_macro("new")
#undef new
_STD_BEGIN
_EXPORT_STD using _CSTD isalnum;
_EXPORT_STD using _CSTD isalpha;
_EXPORT_STD using _CSTD iscntrl;
_EXPORT_STD using _CSTD isdigit;
_EXPORT_STD using _CSTD isgraph;
_EXPORT_STD using _CSTD islower;
_EXPORT_STD using _CSTD isprint;
_EXPORT_STD using _CSTD ispunct;
_EXPORT_STD using _CSTD isspace;
_EXPORT_STD using _CSTD isupper;
_EXPORT_STD using _CSTD isxdigit;
_EXPORT_STD using _CSTD tolower;
_EXPORT_STD using _CSTD toupper;
_EXPORT_STD using _CSTD isblank;
_STD_END
#pragma pop_macro("new")
_STL_RESTORE_CLANG_WARNINGS
#pragma warning(pop)
#pragma pack(pop)
#endif // _STL_COMPILER_PREPROCESSOR
#endif // _CCTYPE_