Summary: This patch adds the macros and entrypoints associated with the `locale.h` entrypoints. These are mostly stubs, as we (for now and the forseeable future) only expect to support the C and maybe C.UTF-8 locales in the LLVM libc.
21 lines
628 B
Modula-2
21 lines
628 B
Modula-2
//===-- C standard library header locale.h --------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIBC_LOCALE_H
|
|
#define LLVM_LIBC_LOCALE_H
|
|
|
|
#include "__llvm-libc-common.h"
|
|
|
|
#include "llvm-libc-macros/locale-macros.h"
|
|
#include "llvm-libc-types/locale_t.h"
|
|
#include "llvm-libc-types/struct_lconv.h"
|
|
|
|
%%public_api()
|
|
|
|
#endif // LLVM_LIBC_LOCALE_H
|