Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===--------------------------- clocale ----------------------------------===// |
| 3 | // |
Chandler Carruth | d201210 | 2019-01-19 10:56:40 +0000 | [diff] [blame] | 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 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef _LIBCPP_CLOCALE |
| 11 | #define _LIBCPP_CLOCALE |
| 12 | |
| 13 | /* |
| 14 | clocale synopsis |
| 15 | |
| 16 | Macros: |
| 17 | |
| 18 | LC_ALL |
| 19 | LC_COLLATE |
| 20 | LC_CTYPE |
| 21 | LC_MONETARY |
| 22 | LC_NUMERIC |
| 23 | LC_TIME |
| 24 | NULL |
| 25 | |
| 26 | namespace std |
| 27 | { |
| 28 | |
| 29 | struct lconv; |
| 30 | char* setlocale(int category, const char* locale); |
| 31 | lconv* localeconv(); |
| 32 | |
| 33 | } // std |
| 34 | |
| 35 | */ |
| 36 | |
| 37 | #include <__config> |
| 38 | #include <locale.h> |
| 39 | |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 40 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 41 | #pragma GCC system_header |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 42 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 43 | |
| 44 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 45 | |
| 46 | using ::lconv; |
Ed Schouten | 137c863 | 2015-06-24 08:44:38 +0000 | [diff] [blame] | 47 | #ifndef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 48 | using ::setlocale; |
Ed Schouten | 137c863 | 2015-06-24 08:44:38 +0000 | [diff] [blame] | 49 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 50 | using ::localeconv; |
| 51 | |
| 52 | _LIBCPP_END_NAMESPACE_STD |
| 53 | |
| 54 | #endif // _LIBCPP_CLOCALE |