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