xref: /llvm-project/libc/src/stdlib/strtold.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
1aa1902f9SMichael Jones //===-- Implementation header for strtold -----------------------*- C++ -*-===//
2aa1902f9SMichael Jones //
3aa1902f9SMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4aa1902f9SMichael Jones // See https://llvm.org/LICENSE.txt for license information.
5aa1902f9SMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6aa1902f9SMichael Jones //
7aa1902f9SMichael Jones //===----------------------------------------------------------------------===//
8aa1902f9SMichael Jones 
9aa1902f9SMichael Jones #ifndef LLVM_LIBC_SRC_STDLIB_STRTOLD_H
10aa1902f9SMichael Jones #define LLVM_LIBC_SRC_STDLIB_STRTOLD_H
11aa1902f9SMichael Jones 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
13*5ff3ff33SPetr Hosek 
14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
15aa1902f9SMichael Jones 
16aa1902f9SMichael Jones long double strtold(const char *__restrict str, char **__restrict str_end);
17aa1902f9SMichael Jones 
18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
19aa1902f9SMichael Jones 
20aa1902f9SMichael Jones #endif // LLVM_LIBC_SRC_STDLIB_STRTOLD_H
21