strtod: next round of AIX fixes
[gnulib.git] / tests / test-xstrtol.c
1 /* Test of xstrtol module.
2    Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
3    2007, 2008, 2009, 2010 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 /* Don't show the program name in error messages.  */
36 static void
37 print_no_progname (void)
38 {
39 }
40
41 int
42 main (int argc, char **argv)
43 {
44   strtol_error s_err;
45   int i;
46
47   program_name = argv[0];
48   error_print_progname = print_no_progname;
49
50   for (i = 1; i < argc; i++)
51     {
52       char *p;
53       __strtol_t val;
54
55       s_err = __xstrtol (argv[i], &p, 0, &val, "bckMw0");
56       if (s_err == LONGINT_OK)
57         {
58           printf ("%s->%" __spec " (%s)\n", argv[i], val, p);
59         }
60       else
61         {
62           xstrtol_fatal (s_err, -2, 'X', NULL, argv[i]);
63         }
64     }
65   exit (0);
66 }