[LLD] [COFF] Handle undefined weak symbols in LTO (#70430)
[llvm-project.git] / libcxx / modules / std / cwctype.inc
blob70e6cf3f11337451a3f208041891a1796eeb805b
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 export namespace std {
11 #ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
12   using std::wctrans_t;
13   using std::wctype_t;
14   using std::wint_t;
16   using std::iswalnum;
17   using std::iswalpha;
18   using std::iswblank;
19   using std::iswcntrl;
20   using std::iswctype;
21   using std::iswdigit;
22   using std::iswgraph;
23   using std::iswlower;
24   using std::iswprint;
25   using std::iswpunct;
26   using std::iswspace;
27   using std::iswupper;
28   using std::iswxdigit;
29   using std::towctrans;
30   using std::towlower;
31   using std::towupper;
32   using std::wctrans;
33   using std::wctype;
34 #endif // _LIBCPP_HAS_NO_WIDE_CHARACTERS
35 } // namespace std