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