source: trunk/essentials/sys-apps/findutils/gnulib/lib/xstrtol.h

Last change on this file was 3170, checked in by bird, 18 years ago

findutils 4.3.2

File size: 2.6 KB
Line 
1/* A more useful interface to strtol.
2
3 Copyright (C) 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006
4 Free Software 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#ifndef XSTRTOL_H_
21# define XSTRTOL_H_ 1
22
23# include "exitfail.h"
24
25# include <inttypes.h>
26
27# include "gettext.h"
28
29# ifndef _STRTOL_ERROR
30enum strtol_error
31 {
32 LONGINT_OK = 0,
33
34 /* These two values can be ORed together, to indicate that both
35 errors occurred. */
36 LONGINT_OVERFLOW = 1,
37 LONGINT_INVALID_SUFFIX_CHAR = 2,
38
39 LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW = (LONGINT_INVALID_SUFFIX_CHAR
40 | LONGINT_OVERFLOW),
41 LONGINT_INVALID = 4
42 };
43typedef enum strtol_error strtol_error;
44# endif
45
46# define _DECLARE_XSTRTOL(name, type) \
47 strtol_error name (const char *, char **, int, type *, const char *);
48_DECLARE_XSTRTOL (xstrtol, long int)
49_DECLARE_XSTRTOL (xstrtoul, unsigned long int)
50_DECLARE_XSTRTOL (xstrtoimax, intmax_t)
51_DECLARE_XSTRTOL (xstrtoumax, uintmax_t)
52
53# define _STRTOL_ERROR(Exit_code, Str, Argument_type_string, Err) \
54 do \
55 { \
56 switch ((Err)) \
57 { \
58 default: \
59 abort (); \
60 \
61 case LONGINT_INVALID: \
62 error ((Exit_code), 0, gettext ("invalid %s `%s'"), \
63 (Argument_type_string), (Str)); \
64 break; \
65 \
66 case LONGINT_INVALID_SUFFIX_CHAR: \
67 case LONGINT_INVALID_SUFFIX_CHAR | LONGINT_OVERFLOW: \
68 error ((Exit_code), 0, \
69 gettext ("invalid character following %s in `%s'"), \
70 (Argument_type_string), (Str)); \
71 break; \
72 \
73 case LONGINT_OVERFLOW: \
74 error ((Exit_code), 0, gettext ("%s `%s' too large"), \
75 (Argument_type_string), (Str)); \
76 break; \
77 } \
78 } \
79 while (0)
80
81# define STRTOL_FATAL_ERROR(Str, Argument_type_string, Err) \
82 _STRTOL_ERROR (exit_failure, Str, Argument_type_string, Err)
83
84# define STRTOL_FAIL_WARN(Str, Argument_type_string, Err) \
85 _STRTOL_ERROR (0, Str, Argument_type_string, Err)
86
87#endif /* not XSTRTOL_H_ */
Note: See TracBrowser for help on using the repository browser.