source: trunk/diffutils/lib/xstrtol.c@ 2603

Last change on this file since 2603 was 2556, checked in by bird, 20 years ago

diffutils 2.8.1

File size: 6.3 KB
Line 
1/* A more useful interface to strtol.
2 Copyright (C) 1995, 1996, 1998-2001 Free Software Foundation, Inc.
3
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)
7 any later version.
8
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.
13
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. */
17
18/* Written by Jim Meyering. */
19
20#if HAVE_CONFIG_H
21# include <config.h>
22#endif
23
24#ifndef __strtol
25# define __strtol strtol
26# define __strtol_t long int
27# define __xstrtol xstrtol
28#endif
29
30/* Some pre-ANSI implementations (e.g. SunOS 4)
31 need stderr defined if assertion checking is enabled. */
32#include <stdio.h>
33
34#if STDC_HEADERS
35# include <stdlib.h>
36#endif
37
38#if HAVE_STRING_H
39# include <string.h>
40#else
41# include <strings.h>
42# ifndef strchr
43# define strchr index
44# endif
45#endif
46
47#include <assert.h>
48#include <ctype.h>
49
50#include <errno.h>
51#ifndef errno
52extern int errno;
53#endif
54
55#if HAVE_LIMITS_H
56# include <limits.h>
57#endif
58
59#ifndef CHAR_BIT
60# define CHAR_BIT 8
61#endif
62
63/* The extra casts work around common compiler bugs. */
64#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
65/* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
66 It is necessary at least when t == time_t. */
67#define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
68 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
69#define TYPE_MAXIMUM(t) (~ (t) 0 - TYPE_MINIMUM (t))
70
71#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
72# define IN_CTYPE_DOMAIN(c) 1
73#else
74# define IN_CTYPE_DOMAIN(c) isascii(c)
75#endif
76
77#define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))