* NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
[gnulib.git] / tests / test-xstrtol.c
1 /* Test of xstrtol module.
2    Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
3    2006, 2007 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    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.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 #include <config.h>
20
21 #include <inttypes.h>
22 #include <stdlib.h>
23 #include <stdio.h>
24
25 #include "xstrtol.h"
26 #include "error.h"
27
28 #ifndef __xstrtol
29 # define __xstrtol xstrtol
30 # define __strtol_t long int
31 # define __spec "ld"
32 #endif
33
34 char *program_name;
35
36 int
37 main (int argc, char **argv)
38 {
39   strtol_error s_err;
40   int i;
41
42   program_name = argv[0];
43   for (i = 1; i < argc; i++)
44     {
45       char *p;
46       __strtol_t val;
47
48       s_err = __xstrtol (argv[i], &p, 0, &val, "bckMw0");
49       if (s_err == LONGINT_OK)
50         {
51           printf ("%s->%" __spec " (%s)\n", argv[i], val, p);
52         }
53       else
54         {
55           xstrtol_fatal (s_err, -2, 'X', NULL, argv[i]);
56         }
57     }
58   exit (0);
59 }