]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdlib/strtold_l.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / stdlib / strtold_l.c
CommitLineData
04277e02 1/* Copyright (C) 1999-2019 Free Software Foundation, Inc.
41bdb6e2 2 This file is part of the GNU C Library.
abfbdde1
UD
3
4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
76235ed4 8
abfbdde1
UD
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
abfbdde1
UD
17
18#include <math.h>
19#include <stdlib.h>
f0be25b6 20#include <wchar.h>
5e88abf9 21
6ac36398
UD
22#ifdef USE_WIDE_CHAR
23# define STRING_TYPE wchar_t
24# define STRTOLD wcstold_l
25# define __STRTOLD __wcstold_l
26# define __STRTOD __wcstod_l
27#else
28# define STRING_TYPE char
29# define STRTOLD strtold_l
30# define __STRTOLD __strtold_l
31# define __STRTOD __strtod_l
32#endif
33
34#define INTERNAL(x) INTERNAL1(x)
35#define INTERNAL1(x) __##x##_internal
36
37extern double INTERNAL (__STRTOD) (const STRING_TYPE *, STRING_TYPE **,
af85385f 38 int, locale_t);
28f540f4 39
76235ed4
UD
40/* There is no `long double' type, use the `double' implementations. */
41long double
6ac36398 42INTERNAL (__STRTOLD) (const STRING_TYPE *nptr, STRING_TYPE **endptr,
af85385f 43 int group, locale_t loc)
76235ed4 44{
6ac36398 45 return INTERNAL (__STRTOD) (nptr, endptr, group, loc);
76235ed4 46}
6ac36398
UD
47#ifndef USE_WIDE_CHAR
48libc_hidden_def (INTERNAL (__STRTOLD))
49#endif
76235ed4
UD
50
51long double
6ac36398 52weak_function
af85385f 53__STRTOLD (const STRING_TYPE *nptr, STRING_TYPE **endptr, locale_t loc)
76235ed4 54{
6ac36398 55 return INTERNAL (__STRTOD) (nptr, endptr, 0, loc);
76235ed4 56}
5e88abf9
UD
57#if defined _LIBC
58libc_hidden_def (__STRTOLD)
59libc_hidden_ver (__STRTOLD, STRTOLD)
60#endif
6ac36398 61weak_alias (__STRTOLD, STRTOLD)