brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · 446a034 Raw
42 lines · c
1// -*- C++ -*-2//===----------------------------------------------------------------------===//3//4// 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-exception7//8//===----------------------------------------------------------------------===//9 10#ifndef _LIBCPP___CXX03_UCHAR_H11#define _LIBCPP___CXX03_UCHAR_H12 13/*14    uchar.h synopsis // since C++1115 16Macros:17 18    __STDC_UTF_16__19    __STDC_UTF_32__20 21Types:22 23  mbstate_t24  size_t25 26size_t mbrtoc8(char8_t* pc8, const char* s, size_t n, mbstate_t* ps);     // since C++2027size_t c8rtomb(char* s, char8_t c8, mbstate_t* ps);                       // since C++2028size_t mbrtoc16(char16_t* pc16, const char* s, size_t n, mbstate_t* ps);29size_t c16rtomb(char* s, char16_t c16, mbstate_t* ps);30size_t mbrtoc32(char32_t* pc32, const char* s, size_t n, mbstate_t* ps);31size_t c32rtomb(char* s, char32_t c32, mbstate_t* ps);32 33*/34 35#include <__cxx03/__config>36 37#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)38#  pragma GCC system_header39#endif40 41#endif // _LIBCPP___CXX03_UCHAR_H42