Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: iscanonical.h
/* Define iscanonical macro. ldbl-96 version.
[0] Fix | Delete
Copyright (C) 2016-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _MATH_H
[18] Fix | Delete
# error "Never use <bits/iscanonical.h> directly; include <math.h> instead."
[19] Fix | Delete
#endif
[20] Fix | Delete
[21] Fix | Delete
extern int __iscanonicall (long double __x)
[22] Fix | Delete
__THROW __attribute__ ((__const__));
[23] Fix | Delete
#define __iscanonicalf(x) ((void) (__typeof (x)) (x), 1)
[24] Fix | Delete
#define __iscanonical(x) ((void) (__typeof (x)) (x), 1)
[25] Fix | Delete
#if __HAVE_DISTINCT_FLOAT128
[26] Fix | Delete
# define __iscanonicalf128(x) ((void) (__typeof (x)) (x), 1)
[27] Fix | Delete
#endif
[28] Fix | Delete
[29] Fix | Delete
/* Return nonzero value if X is canonical. In IEEE interchange binary
[30] Fix | Delete
formats, all values are canonical, but the argument must still be
[31] Fix | Delete
converted to its semantic type for any exceptions arising from the
[32] Fix | Delete
conversion, before being discarded; in extended precision, there
[33] Fix | Delete
are encodings that are not consistently handled as corresponding to
[34] Fix | Delete
any particular value of the type, and we return 0 for those. */
[35] Fix | Delete
#ifndef __cplusplus
[36] Fix | Delete
# define iscanonical(x) __MATH_TG ((x), __iscanonical, (x))
[37] Fix | Delete
#else
[38] Fix | Delete
/* In C++ mode, __MATH_TG cannot be used, because it relies on
[39] Fix | Delete
__builtin_types_compatible_p, which is a C-only builtin. On the
[40] Fix | Delete
other hand, overloading provides the means to distinguish between
[41] Fix | Delete
the floating-point types. The overloading resolution will match
[42] Fix | Delete
the correct parameter (regardless of type qualifiers (i.e.: const
[43] Fix | Delete
and volatile)). */
[44] Fix | Delete
extern "C++" {
[45] Fix | Delete
inline int iscanonical (float __val) { return __iscanonicalf (__val); }
[46] Fix | Delete
inline int iscanonical (double __val) { return __iscanonical (__val); }
[47] Fix | Delete
inline int iscanonical (long double __val) { return __iscanonicall (__val); }
[48] Fix | Delete
# if __HAVE_DISTINCT_FLOAT128
[49] Fix | Delete
inline int iscanonical (_Float128 __val) { return __iscanonicalf128 (__val); }
[50] Fix | Delete
# endif
[51] Fix | Delete
}
[52] Fix | Delete
#endif /* __cplusplus */
[53] Fix | Delete
[54] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function