blob: bff4e92f99ff7123faac57af8e4b09fac80305a1 [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
46using ::lconv;
Ed Schouten137c8632015-06-24 08:44:38 +000047#ifndef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +000048using ::setlocale;
Ed Schouten137c8632015-06-24 08:44:38 +000049#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +000050using ::localeconv;
51
52_LIBCPP_END_NAMESPACE_STD
53
54#endif // _LIBCPP_CLOCALE