* modules/inttypes: New file.
[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 /* Verify interface.  */
27 #include <inttypes.h>
28
29 #include <stdlib.h>
30
31 #include "verify.h"
32
33 #ifdef UNSIGNED
34 # ifndef HAVE_DECL_STRTOULL
35 "this configure-time declaration test was not run"
36 # endif
37 # if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG
38 unsigned long long strtoull (char const *, char **, int);
39 # endif
40
41 #else
42
43 # ifndef HAVE_DECL_STRTOLL
44 "this configure-time declaration test was not run"
45 # endif
46 # if !HAVE_DECL_STRTOLL && HAVE_UNSIGNED_LONG_LONG
47 long long strtoll (char const *, char **, int);
48 # endif
49 #endif
50
51 #ifdef UNSIGNED
52 # undef HAVE_LONG_LONG
53 # define HAVE_LONG_LONG HAVE_UNSIGNED_LONG_LONG
54 # define INT uintmax_t
55 # define strtoimax strtoumax
56 # define strtol strtoul
57 # define strtoll strtoull
58 #else
59 # define INT intmax_t
60 #endif
61
62 INT
63 strtoimax (char const *ptr, char **endptr, int base)
64 {
65 #if HAVE_LONG_LONG
66   verify (sizeof (INT) == sizeof (long int)
67           || sizeof (INT) == sizeof (long long int));
68
69   if (sizeof (INT) != sizeof (long int))
70     return strtoll (ptr, endptr, base);
71 #else
72   verify (sizeof (INT) == sizeof (long int));
73 #endif
74
75   return strtol (ptr, endptr, base);
76 }