* modules/exclude (Depends-on): Depend on verify.
[gnulib.git] / lib / strtoimax.c
1 /* Convert string representation of a number into an intmax_t value.
2
3    Copyright (C) 1999, 2001, 2002, 2003, 2004 Free Software
4    Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 /* Written by Paul Eggert. */
21
22 #ifdef HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #if HAVE_INTTYPES_H
27 # include <inttypes.h>
28 #endif
29 #if HAVE_STDINT_H
30 # include <stdint.h>
31 #endif
32
33 #include <stdlib.h>
34
35 #include "verify.h"
36
37 #ifdef UNSIGNED
38 # ifndef HAVE_DECL_STRTOULL
39 "this configure-time declaration test was not run"
40 # endif
41 # if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG
42 unsigned long long strtoull (char const *, char **, int);
43 # endif
44
45 #else
46
47 # ifndef HAVE_DECL_STRTOLL
48 "this configure-time declaration test was not run"
49 # endif
50 # if !HAVE_DECL_STRTOLL && HAVE_UNSIGNED_LONG_LONG
51 long long strtoll (char const *, char **, int);
52 # endif
53 #endif
54
55 #ifdef UNSIGNED
56 # undef HAVE_LONG_LONG
57 # define HAVE_LONG_LONG HAVE_UNSIGNED_LONG_LONG
58 # define INT uintmax_t
59 # define strtoimax strtoumax
60 # define strtol strtoul
61 # define strtoll strtoull
62 #else
63 # define INT intmax_t
64 #endif
65
66 INT
67 strtoimax (char const *ptr, char **endptr, int base)
68 {
69 #if HAVE_LONG_LONG
70   verify (sizeof (INT) == sizeof (long int)
71           || sizeof (INT) == sizeof (long long int));
72
73   if (sizeof (INT) != sizeof (long int))
74     return strtoll (ptr, endptr, base);
75 #else
76   verify (sizeof (INT) == sizeof (long int));
77 #endif
78
79   return strtol (ptr, endptr, base);
80 }