Path: blob/main/contrib/llvm-project/libc/shared/str_to_float.h
213726 views
//===-- String to float conversion utils ------------------------*- C++ -*-===//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_SHARED_STR_TO_FLOAT_H9#define LLVM_LIBC_SHARED_STR_TO_FLOAT_H1011#include "libc_common.h"12#include "src/__support/str_to_float.h"1314namespace LIBC_NAMESPACE_DECL {15namespace shared {1617using internal::ExpandedFloat;18using internal::FloatConvertReturn;19using internal::RoundDirection;2021using internal::binary_exp_to_float;22using internal::decimal_exp_to_float;2324} // namespace shared25} // namespace LIBC_NAMESPACE_DECL2627#endif // LLVM_LIBC_SHARED_STR_TO_FLOAT_H282930