Change copyright notice from GPLv2+ to GPLv3+.
[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 3 of the License, or
8    (at your option) 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, see <http://www.gnu.org/licenses/>.  */
17
18 #include <config.h>
19
20 #include <inttypes.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23
24 #include "xstrtol.h"
25 #include "error.h"
26
27 #ifndef __xstrtol
28 # define __xstrtol xstrtol
29 # define __strtol_t long int
30 # define __spec "ld"
31 #endif
32
33 char *program_name;
34
35 int
36 main (int argc, char **argv)
37 {
38   strtol_error s_err;
39   int i;
40
41   program_name = argv[0];
42   for (i = 1; i < argc; i++)
43     {
44       char *p;
45       __strtol_t val;
46
47       s_err = __xstrtol (argv[i], &p, 0, &val, "bckMw0");
48       if (s_err == LONGINT_OK)
49         {
50           printf ("%s->%" __spec " (%s)\n", argv[i], val, p);
51         }
52       else
53         {
54           xstrtol_fatal (s_err, -2, 'X', NULL, argv[i]);
55         }
56     }
57   exit (0);
58 }