1 /* strtoumax - convert string representation of a number into an uintmax_t value. */
3 /* Copyright 1999-2020,2022 Free Software Foundation, Inc.
5 This file is part of GNU Bash, the Bourne Again SHell.
7 Bash is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 Bash is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
21 /* Written by Paul Eggert. Modified by Chet Ramey for Bash. */
28 # include <inttypes.h>
41 /* Verify a requirement at compile-time (unlike assert, which is runtime). */
42 #define verify(name, assertion) struct name { char a[(assertion) ? 1 : -1]; }
44 #ifndef HAVE_DECL_STRTOUL
45 "this configure-time declaration test was not run"
47 #if !HAVE_DECL_STRTOUL
48 extern unsigned long strtoul (const char *, char **, int);
51 #ifndef HAVE_DECL_STRTOULL
52 "this configure-time declaration test was not run"
54 #if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG_INT
55 extern unsigned long long strtoull (const char *, char **, int);
63 strtoumax (const char *ptr
, char **endptr
, int base
)
65 #if HAVE_UNSIGNED_LONG_LONG_INT
66 verify (size_is_that_of_unsigned_long_or_unsigned_long_long
,
67 (sizeof (uintmax_t) == sizeof (unsigned long) ||
68 sizeof (uintmax_t) == sizeof (unsigned long long)));
70 if (sizeof (uintmax_t) != sizeof (unsigned long))
71 return (strtoull (ptr
, endptr
, base
));
73 verify (size_is_that_of_unsigned_long
, sizeof (uintmax_t) == sizeof (unsigned long));
76 return (strtoul (ptr
, endptr
, base
));
86 #if HAVE_UNSIGNED_LONG_LONG_INT
91 printf ("sizeof uintmax_t: %d\n", sizeof (uintmax_t));
93 #if HAVE_UNSIGNED_LONG_LONG_INT
94 printf ("sizeof unsigned long long: %d\n", sizeof (unsigned long long));
96 printf ("sizeof unsigned long: %d\n", sizeof (unsigned long));
98 x
= strtoumax("42", &endptr
, 10);
99 #if HAVE_LONG_LONG_INT
100 y
= strtoull("42", &endptr
, 10);
104 z
= strtoul("42", &endptr
, 10);
106 printf ("%llu %llu %lu\n", x
, y
, z
);