1 /* Convert string representation of a number into an intmax_t value.
2 Copyright 1999, 2001 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by Paul Eggert. */
25 # include <inttypes.h>
33 # if defined PROTOTYPES || defined __STDC__
34 # define PARAMS(Args) Args
36 # define PARAMS(Args) ()
40 /* Verify a requirement at compile-time (unlike assert, which is runtime). */
41 #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 unsigned long strtoul
PARAMS ((char const *, char **, int));
50 # ifndef HAVE_DECL_STRTOULL
51 "this configure-time declaration test was not run"
53 # if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG
54 unsigned long long strtoull
PARAMS ((char const *, char **, int));
59 # ifndef HAVE_DECL_STRTOL
60 "this configure-time declaration test was not run"
62 # if !HAVE_DECL_STRTOL
63 long strtol
PARAMS ((char const *, char **, int));
65 # ifndef HAVE_DECL_STRTOLL
66 "this configure-time declaration test was not run"
68 # if !HAVE_DECL_STRTOLL && HAVE_UNSIGNED_LONG_LONG
69 long long strtoll
PARAMS ((char const *, char **, int));
74 # undef HAVE_LONG_LONG
75 # define HAVE_LONG_LONG HAVE_UNSIGNED_LONG_LONG
76 # define INT uintmax_t
77 # define strtoimax strtoumax
78 # define strtol strtoul
79 # define strtoll strtoull
85 strtoimax (char const *ptr
, char **endptr
, int base
)
88 verify (size_is_that_of_long_or_long_long
,
89 (sizeof (INT
) == sizeof (long)
90 || sizeof (INT
) == sizeof (long long)));
92 if (sizeof (INT
) != sizeof (long))
93 return strtoll (ptr
, endptr
, base
);
95 verify (size_is_that_of_long
,
96 sizeof (INT
) == sizeof (long));
99 return strtol (ptr
, endptr
, base
);