1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
/* Internal function prototypes for string-to-decimal conversions
Copyright (C) 2006 IBM Corporation.
Copyright (C) 2007-2015 Free Software Foundation, Inc.
This file is part of the Decimal Floating Point C Library.
Author(s): Ryan S. Arnold <rsa@us.ibm.com>
The Decimal Floating Point C Library is free software; you can
redistribute it and/or modify it under the terms of the GNU Lesser
General Public License version 2.1.
The Decimal Floating Point C Library is distributed in the hope that
it will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
the GNU Lesser General Public License version 2.1 for more details.
You should have received a copy of the GNU Lesser General Public
License version 2.1 along with the Decimal Floating Point C Library;
if not, write to the Free Software Foundation, Inc., 51 Franklin
Street, Fifth Floor, Boston, MA 02110-1301 USA.
Please see dfp/COPYING.txt for more information. */
#ifndef _DFPSTDLIB_PRIVATE_H
#define _DFPSTDLIB_PRIVATE_H 1
#include <features.h>
extern _Decimal32 __strtod32_internal (const char * __restrict nptr, char ** __restrict endptr, int group);
extern _Decimal64 __strtod64_internal (const char * __restrict nptr, char ** __restrict endptr, int group);
extern _Decimal128 __strtod128_internal (const char * __restrict nptr, char ** __restrict endptr, int group);
hidden_proto (__strtod32_internal)
hidden_proto (__strtod64_internal)
hidden_proto (__strtod128_internal)
extern _Decimal32 __strtod32_l_internal (const char * __restrict nptr, char ** __restrict endptr, int group, locale_t loc);
extern _Decimal64 __strtod64_l_internal (const char * __restrict nptr, char ** __restrict endptr, int group, locale_t loc);
extern _Decimal128 __strtod128_l_internal (const char * __restrict nptr, char ** __restrict endptr, int group, locale_t loc);
hidden_proto (__strtod32_l_internal)
hidden_proto (__strtod64_l_internal)
hidden_proto (__strtod128_l_internal)
#endif /* _DFPSTDLIB_PRIVATE_H */
|