187c01607SMichael Jones //===-- Implementation header for atof --------------------------*- C++ -*-===// 287c01607SMichael Jones // 387c01607SMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 487c01607SMichael Jones // See https://llvm.org/LICENSE.txt for license information. 587c01607SMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 687c01607SMichael Jones // 787c01607SMichael Jones //===----------------------------------------------------------------------===// 887c01607SMichael Jones 987c01607SMichael Jones #ifndef LLVM_LIBC_SRC_STDLIB_ATOF_H 1087c01607SMichael Jones #define LLVM_LIBC_SRC_STDLIB_ATOF_H 1187c01607SMichael Jones 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 13*5ff3ff33SPetr Hosek 14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 1587c01607SMichael Jones 1687c01607SMichael Jones double atof(const char *str); 1787c01607SMichael Jones 18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 1987c01607SMichael Jones 20270547f3SGuillaume Chatelet #endif // LLVM_LIBC_SRC_STDLIB_ATOF_H 21