[lld][WebAssembly] Reinstate mistakenly disabled test. NFC
[llvm-project.git] / libcxx / include / cctype
blob4235cd6acc8cc7479d989689ff30b0b8682d6801
1 // -*- C++ -*-
2 //===----------------------------------------------------------------------===//
3 //
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP_CCTYPE
11 #define _LIBCPP_CCTYPE
14     cctype synopsis
16 namespace std
19 int isalnum(int c);
20 int isalpha(int c);
21 int isblank(int c);  // C99
22 int iscntrl(int c);
23 int isdigit(int c);
24 int isgraph(int c);
25 int islower(int c);
26 int isprint(int c);
27 int ispunct(int c);
28 int isspace(int c);
29 int isupper(int c);
30 int isxdigit(int c);
31 int tolower(int c);
32 int toupper(int c);
34 }  // std
37 #include <__config>
38 #include <ctype.h>
40 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
41 #pragma GCC system_header
42 #endif
44 _LIBCPP_BEGIN_NAMESPACE_STD
46 #ifdef isalnum
47 #undef isalnum
48 #endif
50 #ifdef isalpha
51 #undef isalpha
52 #endif
54 #ifdef isblank
55 #undef isblank
56 #endif
58 #ifdef iscntrl
59 #undef iscntrl
60 #endif
62 #ifdef isdigit
63 #undef isdigit
64 #endif
66 #ifdef isgraph
67 #undef isgraph
68 #endif
70 #ifdef islower
71 #undef islower
72 #endif
74 #ifdef isprint
75 #undef isprint
76 #endif
78 #ifdef ispunct
79 #undef ispunct
80 #endif
82 #ifdef isspace
83 #undef isspace
84 #endif
86 #ifdef isupper
87 #undef isupper
88 #endif
90 #ifdef isxdigit
91 #undef isxdigit
92 #endif
94 #ifdef tolower
95 #undef tolower
96 #endif
98 #ifdef toupper
99 #undef toupper
100 #endif
103 using ::isalnum _LIBCPP_USING_IF_EXISTS;
104 using ::isalpha _LIBCPP_USING_IF_EXISTS;
105 using ::isblank _LIBCPP_USING_IF_EXISTS;
106 using ::iscntrl _LIBCPP_USING_IF_EXISTS;
107 using ::isdigit _LIBCPP_USING_IF_EXISTS;
108 using ::isgraph _LIBCPP_USING_IF_EXISTS;
109 using ::islower _LIBCPP_USING_IF_EXISTS;
110 using ::isprint _LIBCPP_USING_IF_EXISTS;
111 using ::ispunct _LIBCPP_USING_IF_EXISTS;
112 using ::isspace _LIBCPP_USING_IF_EXISTS;
113 using ::isupper _LIBCPP_USING_IF_EXISTS;
114 using ::isxdigit _LIBCPP_USING_IF_EXISTS;
115 using ::tolower _LIBCPP_USING_IF_EXISTS;
116 using ::toupper _LIBCPP_USING_IF_EXISTS;
118 _LIBCPP_END_NAMESPACE_STD
120 #endif // _LIBCPP_CCTYPE