chromium/third_party/libc++/src/include/__charconv/tables.h

// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// 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 _LIBCPP___CHARCONV_TABLES
#define _LIBCPP___CHARCONV_TABLES

#include <__config>
#include <cstdint>

#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
#  pragma GCC system_header
#endif

_LIBCPP_BEGIN_NAMESPACE_STD

#if _LIBCPP_STD_VER >= 17

namespace __itoa {

inline constexpr char __base_2_lut[64] =;

inline constexpr char __base_8_lut[128] =;

inline constexpr char __base_16_lut[512] =;

inline constexpr uint32_t __pow10_32[10] =;

inline constexpr uint64_t __pow10_64[20] =;

#  ifndef _LIBCPP_HAS_NO_INT128
inline constexpr int __pow10_128_offset      =;
inline constexpr __uint128_t __pow10_128[40] =;
#  endif

inline constexpr char __digits_base_10[200] =;
// clang-format on

} // namespace __itoa

#endif // _LIBCPP_STD_VER >= 17

_LIBCPP_END_NAMESPACE_STD

#endif // _LIBCPP___CHARCONV_TABLES