Path: blob/main/contrib/llvm-project/libcxx/include/__std_mbstate_t.h
35154 views
// -*- C++ -*-1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//89#ifndef _LIBCPP___STD_MBSTATE_T_H10#define _LIBCPP___STD_MBSTATE_T_H1112#include <__config>13#include <__mbstate_t.h>1415#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)16# pragma GCC system_header17#endif1819// The goal of this header is to provide std::mbstate_t without requiring all20// of <cuchar> or <cwchar>.2122_LIBCPP_BEGIN_NAMESPACE_STD2324using ::mbstate_t _LIBCPP_USING_IF_EXISTS;2526_LIBCPP_END_NAMESPACE_STD2728#endif // _LIBCPP___STD_MBSTATE_T_H293031