123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // -*- C++ -*-
- //===--------------------------- clocale ----------------------------------===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is dual licensed under the MIT and the University of Illinois Open
- // Source Licenses. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- #ifndef _LIBCPP_CLOCALE
- #define _LIBCPP_CLOCALE
- /*
- clocale synopsis
- Macros:
- LC_ALL
- LC_COLLATE
- LC_CTYPE
- LC_MONETARY
- LC_NUMERIC
- LC_TIME
- NULL
- namespace std
- {
- struct lconv;
- char* setlocale(int category, const char* locale);
- lconv* localeconv();
- } // std
- */
- // Not supported in SGX.
- // Locale library impact on enclave size.
- #include <__config>
- #if !defined(_LIBCPP_SGX_CONFIG)
- #include <locale.h>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- #pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_STD
- using ::lconv;
- #ifndef _LIBCPP_HAS_NO_THREAD_UNSAFE_C_FUNCTIONS
- using ::setlocale;
- #endif
- using ::localeconv;
- _LIBCPP_END_NAMESPACE_STD
- #endif // !defined(_LIBCPP_SGX_CONFIG)
- #endif // _LIBCPP_CLOCALE
|