2016-11-19 01:14:15 +00:00
|
|
|
// -*- C++ -*-
|
2021-11-17 16:25:01 -05:00
|
|
|
//===----------------------------------------------------------------------===//
|
2016-11-19 01:14:15 +00:00
|
|
|
//
|
2019-01-19 10:56:40 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-11-19 01:14:15 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_LOCALE_H
|
|
|
|
#define _LIBCPP_LOCALE_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
locale.h synopsis
|
|
|
|
|
|
|
|
Macros:
|
|
|
|
|
|
|
|
LC_ALL
|
|
|
|
LC_COLLATE
|
|
|
|
LC_CTYPE
|
|
|
|
LC_MONETARY
|
|
|
|
LC_NUMERIC
|
|
|
|
LC_TIME
|
|
|
|
|
|
|
|
Types:
|
|
|
|
|
|
|
|
lconv
|
|
|
|
|
|
|
|
Functions:
|
|
|
|
|
|
|
|
setlocale
|
|
|
|
localeconv
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <__config>
|
|
|
|
|
2020-10-28 09:26:56 -04:00
|
|
|
#if defined(_LIBCPP_HAS_NO_LOCALIZATION)
|
2022-05-18 13:17:14 -04:00
|
|
|
# error "<locale.h> is not supported since libc++ has been configured without support for localization."
|
2020-10-28 09:26:56 -04:00
|
|
|
#endif
|
|
|
|
|
2016-11-19 01:14:15 +00:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2022-02-01 20:16:40 -05:00
|
|
|
# pragma GCC system_header
|
2016-11-19 01:14:15 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include_next <locale.h>
|
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_LOCALE_H
|