Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / libcxx / include / cctype
blobd7af7e084aa23a9d65ff6a0470f50990e23e8e27
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>
39 #include <ctype.h>
41 #ifndef _LIBCPP_CTYPE_H
42 #   error <cctype> tried including <ctype.h> but didn't find libc++'s <ctype.h> header. \
43           This usually means that your header search paths are not configured properly.  \
44           The header search paths should contain the C++ Standard Library headers before \
45           any C Standard Library.
46 #endif
48 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
49 #  pragma GCC system_header
50 #endif
52 _LIBCPP_BEGIN_NAMESPACE_STD
54 #ifdef isalnum
55 #  undef isalnum
56 #endif
58 #ifdef isalpha
59 #  undef isalpha
60 #endif
62 #ifdef isblank
63 #  undef isblank
64 #endif
66 #ifdef iscntrl
67 #  undef iscntrl
68 #endif
70 #ifdef isdigit
71 #  undef isdigit
72 #endif
74 #ifdef isgraph
75 #  undef isgraph
76 #endif
78 #ifdef islower
79 #  undef islower
80 #endif
82 #ifdef isprint
83 #  undef isprint
84 #endif
86 #ifdef ispunct
87 #  undef ispunct
88 #endif
90 #ifdef isspace
91 #  undef isspace
92 #endif
94 #ifdef isupper
95 #  undef isupper
96 #endif
98 #ifdef isxdigit
99 #  undef isxdigit
100 #endif
102 #ifdef tolower
103 #  undef tolower
104 #endif
106 #ifdef toupper
107 #  undef toupper
108 #endif
110 using ::isalnum _LIBCPP_USING_IF_EXISTS;
111 using ::isalpha _LIBCPP_USING_IF_EXISTS;
112 using ::isblank _LIBCPP_USING_IF_EXISTS;
113 using ::iscntrl _LIBCPP_USING_IF_EXISTS;
114 using ::isdigit _LIBCPP_USING_IF_EXISTS;
115 using ::isgraph _LIBCPP_USING_IF_EXISTS;
116 using ::islower _LIBCPP_USING_IF_EXISTS;
117 using ::isprint _LIBCPP_USING_IF_EXISTS;
118 using ::ispunct _LIBCPP_USING_IF_EXISTS;
119 using ::isspace _LIBCPP_USING_IF_EXISTS;
120 using ::isupper _LIBCPP_USING_IF_EXISTS;
121 using ::isxdigit _LIBCPP_USING_IF_EXISTS;
122 using ::tolower _LIBCPP_USING_IF_EXISTS;
123 using ::toupper _LIBCPP_USING_IF_EXISTS;
125 _LIBCPP_END_NAMESPACE_STD
127 #endif // _LIBCPP_CCTYPE