~ubuntu-branches/ubuntu/natty/diffutils/natty

« back to all changes in this revision

Viewing changes to lib/strtoimax.c

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2010-05-04 20:38:00 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100504203800-f67xd9rsa9xl9qqj
Tags: 1:3.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Convert string representation of a number into an intmax_t value.
2
2
 
3
 
   Copyright (C) 1999, 2001 Free Software Foundation, Inc.
 
3
   Copyright (C) 1999, 2001, 2002, 2003, 2004, 2006, 2009, 2010 Free Software
 
4
   Foundation, Inc.
4
5
 
5
 
   This program is free software; you can redistribute it and/or modify
 
6
   This program is free software: you can redistribute it and/or modify
6
7
   it under the terms of the GNU General Public License as published by
7
 
   the Free Software Foundation; either version 2, or (at your option)
8
 
   any later version.
 
8
   the Free Software Foundation; either version 3 of the License, or
 
9
   (at your option) any later version.
9
10
 
10
11
   This program is distributed in the hope that it will be useful,
11
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
14
   GNU General Public License for more details.
14
15
 
15
16
   You should have received a copy of the GNU General Public License
16
 
   along with this program; if not, write to the Free Software Foundation,
17
 
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
17
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
18
 
19
19
/* Written by Paul Eggert. */
20
20
 
21
 
#if HAVE_CONFIG_H
22
 
# include <config.h>
23
 
#endif
24
 
 
25
 
#if HAVE_INTTYPES_H
26
 
# include <inttypes.h>
27
 
#endif
28
 
 
29
 
#if HAVE_STDLIB_H
30
 
# include <stdlib.h>
31
 
#endif
32
 
 
33
 
#ifndef PARAMS
34
 
# if defined PROTOTYPES || defined __STDC__
35
 
#  define PARAMS(Args) Args
36
 
# else
37
 
#  define PARAMS(Args) ()
38
 
# endif
39
 
#endif
40
 
 
41
 
/* Verify a requirement at compile-time (unlike assert, which is runtime).  */
42
 
#define verify(name, assertion) struct name { char a[(assertion) ? 1 : -1]; }
 
21
#include <config.h>
 
22
 
 
23
/* Verify interface.  */
 
24
#include <inttypes.h>
 
25
 
 
26
#include <stdlib.h>
 
27
 
 
28
#include "verify.h"
43
29
 
44
30
#ifdef UNSIGNED
45
 
# ifndef HAVE_DECL_STRTOUL
46
 
"this configure-time declaration test was not run"
47
 
# endif
48
 
# if !HAVE_DECL_STRTOUL
49
 
unsigned long strtoul PARAMS ((char const *, char **, int));
50
 
# endif
51
31
# ifndef HAVE_DECL_STRTOULL
52
32
"this configure-time declaration test was not run"
53
33
# endif
54
 
# if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG
55
 
unsigned long long strtoull PARAMS ((char const *, char **, int));
 
34
# if !HAVE_DECL_STRTOULL && HAVE_UNSIGNED_LONG_LONG_INT
 
35
unsigned long long int strtoull (char const *, char **, int);
56
36
# endif
57
37
 
58
38
#else
59
39
 
60
 
# ifndef HAVE_DECL_STRTOL
61
 
"this configure-time declaration test was not run"
62
 
# endif
63
 
# if !HAVE_DECL_STRTOL
64
 
long strtol PARAMS ((char const *, char **, int));
65
 
# endif
66
40
# ifndef HAVE_DECL_STRTOLL
67
41
"this configure-time declaration test was not run"
68
42
# endif
69
 
# if !HAVE_DECL_STRTOLL && HAVE_UNSIGNED_LONG_LONG
70
 
long long strtoll PARAMS ((char const *, char **, int));
 
43
# if !HAVE_DECL_STRTOLL && HAVE_LONG_LONG_INT
 
44
long long int strtoll (char const *, char **, int);
71
45
# endif
72
46
#endif
73
47
 
74
48
#ifdef UNSIGNED
75
 
# undef HAVE_LONG_LONG
76
 
# define HAVE_LONG_LONG HAVE_UNSIGNED_LONG_LONG
77
 
# define INT uintmax_t
 
49
# define Have_long_long HAVE_UNSIGNED_LONG_LONG_INT
 
50
# define Int uintmax_t
 
51
# define Unsigned unsigned
78
52
# define strtoimax strtoumax
79
53
# define strtol strtoul
80
54
# define strtoll strtoull
81
55
#else
82
 
# define INT intmax_t
 
56
# define Have_long_long HAVE_LONG_LONG_INT
 
57
# define Int intmax_t
 
58
# define Unsigned
83
59
#endif
84
60
 
85
 
INT
 
61
Int
86
62
strtoimax (char const *ptr, char **endptr, int base)
87
63
{
88
 
#if HAVE_LONG_LONG
89
 
  verify (size_is_that_of_long_or_long_long,
90
 
          (sizeof (INT) == sizeof (long)
91
 
           || sizeof (INT) == sizeof (long long)));
 
64
#if Have_long_long
 
65
  verify (sizeof (Int) == sizeof (Unsigned long int)
 
66
          || sizeof (Int) == sizeof (Unsigned long long int));
92
67
 
93
 
  if (sizeof (INT) != sizeof (long))
 
68
  if (sizeof (Int) != sizeof (Unsigned long int))
94
69
    return strtoll (ptr, endptr, base);
95
70
#else
96
 
  verify (size_is_that_of_long,
97
 
          sizeof (INT) == sizeof (long));
 
71
  verify (sizeof (Int) == sizeof (Unsigned long int));
98
72
#endif
99
73
 
100
74
  return strtol (ptr, endptr, base);