blob: 8fe91fc5a3a4610259222a17b7c47cf40aaa3b8f [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- clocale ----------------------------------===//
3//
Chandler Carruthd2012102019-01-19 10:56:40 +00004// 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 Hinnantc51e1022010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10#ifndef _LIBCPP_CLOCALE
11#define _LIBCPP_CLOCALE
12
13/*
14 clocale synopsis
15
16Macros:
17
18 LC_ALL
19 LC_COLLATE
20 LC_CTYPE
21 LC_MONETARY
22 LC_NUMERIC
23 LC_TIME
24 NULL
25
26namespace std
27{
28
29struct lconv;
30char* setlocale(int category, const char* locale);
31lconv* localeconv();
32
33} // std
34
35*/
36
37#include <__config>
38#include <locale.h>
39
Howard Hinnantaaaa52b2011-10-17 20:05:10 +000040#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantc51e1022010-05-11 19:42:16 +000041#pragma GCC system_header
Howard Hinnantaaaa52b2011-10-17 20:05:10 +000042#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +000043
44_LIBCPP_BEGIN_NAMESPACE_STD
45
Louis Dionne9c660c62021-06-02 10:41:37 -040046using ::lconv _LIBCPP_USING_IF_EXISTS;
Ed Schouten137c8632015-06-24 08:44:38 +000047#ifndef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS
Louis Dionne9c660c62021-06-02 10:41:37 -040048using ::setlocale _LIBCPP_USING_IF_EXISTS;
Ed Schouten137c8632015-06-24 08:44:38 +000049#endif
Louis Dionne9c660c62021-06-02 10:41:37 -040050using ::localeconv _LIBCPP_USING_IF_EXISTS;
Howard Hinnantc51e1022010-05-11 19:42:16 +000051
52_LIBCPP_END_NAMESPACE_STD
53
Louis Dionne2b1ceaa2021-04-20 12:03:32 -040054#endif // _LIBCPP_CLOCALE