Path: blob/main/system/lib/llvm-libc/include/llvm-libc-macros/locale-macros.h
6192 views
//===-- Definition of macros from locale.h --------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_MACROS_LOCALE_MACROS_H9#define LLVM_LIBC_MACROS_LOCALE_MACROS_H1011#include "../llvm-libc-types/locale_t.h"1213#define LC_CTYPE 014#define LC_NUMERIC 115#define LC_TIME 216#define LC_COLLATE 317#define LC_MONETARY 418#define LC_MESSAGES 519#define LC_ALL 62021#define LC_GLOBAL_LOCALE ((locale_t)(-1))2223#define LC_CTYPE_MASK (1 << LC_CTYPE)24#define LC_NUMERIC_MASK (1 << LC_NUMERIC)25#define LC_TIME_MASK (1 << LC_TIME)26#define LC_COLLATE_MASK (1 << LC_COLLATE)27#define LC_MONETARY_MASK (1 << LC_MONETARY)28#define LC_MESSAGES_MASK (1 << LC_MESSAGES)29#define LC_ALL_MASK 0x7fffffff3031#endif // LLVM_LIBC_MACROS_LOCALE_MACROS_H323334