[X86] Pre-commit test for D157513
[llvm-project.git] / libcxx / include / cctype
blob867e7d5b0b35dd5ab589cdadc28a59bb119e931c
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 <__assert> // all public C++ headers provide the assertion handler
38 #include <__config>
40 #include <ctype.h>
42 #ifndef _LIBCPP_CTYPE_H
43 #   error <cctype> tried including <ctype.h> but didn't find libc++'s <ctype.h> header. \
44           This usually means that your header search paths are not configured properly.  \
45           The header search paths should contain the C++ Standard Library headers before \
46           any C Standard Library.
47 #endif
49 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
50 #  pragma GCC system_header
51 #endif
53 _LIBCPP_BEGIN_NAMESPACE_STD
55 #ifdef isalnum
56 #undef isalnum
57 #endif
59 #ifdef isalpha
60 #undef isalpha
61 #endif
63 #ifdef isblank
64 #undef isblank
65 #endif
67 #ifdef iscntrl
68 #undef iscntrl
69 #endif
71 #ifdef isdigit
72 #undef isdigit
73 #endif
75 #ifdef isgraph
76 #undef isgraph
77 #endif
79 #ifdef islower
80 #undef islower
81 #endif
83 #ifdef isprint
84 #undef isprint
85 #endif
87 #ifdef ispunct
88 #undef ispunct
89 #endif
91 #ifdef isspace
92 #undef isspace
93 #endif
95 #ifdef isupper
96 #undef isupper
97 #endif
99 #ifdef isxdigit
100 #undef isxdigit
101 #endif
103 #ifdef tolower
104 #undef tolower
105 #endif
107 #ifdef toupper
108 #undef toupper
109 #endif
112 using ::isalnum _LIBCPP_USING_IF_EXISTS;
113 using ::isalpha _LIBCPP_USING_IF_EXISTS;
114 using ::isblank _LIBCPP_USING_IF_EXISTS;
115 using ::iscntrl _LIBCPP_USING_IF_EXISTS;
116 using ::isdigit _LIBCPP_USING_IF_EXISTS;
117 using ::isgraph _LIBCPP_USING_IF_EXISTS;
118 using ::islower _LIBCPP_USING_IF_EXISTS;
119 using ::isprint _LIBCPP_USING_IF_EXISTS;
120 using ::ispunct _LIBCPP_USING_IF_EXISTS;
121 using ::isspace _LIBCPP_USING_IF_EXISTS;
122 using ::isupper _LIBCPP_USING_IF_EXISTS;
123 using ::isxdigit _LIBCPP_USING_IF_EXISTS;
124 using ::tolower _LIBCPP_USING_IF_EXISTS;
125 using ::toupper _LIBCPP_USING_IF_EXISTS;
127 _LIBCPP_END_NAMESPACE_STD
129 #endif // _LIBCPP_CCTYPE