168251ab4e7039403513b7adedc941c848998dd8
[pspp-builds.git] / tests / formats / inexactify.c
1 /* inexactify.c - PSPP test program.
2    Copyright (C) 2006 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    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
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #include <ctype.h>
21 #include <stdbool.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25
26 /* Replaces insignificant digits by # to facilitate textual
27    comparisons.  Not a perfect solution to the general-purpose
28    comparison problem, because rounding that affects earlier
29    digits can still cause differences. */
30 int
31 main (void)
32 {
33   bool in_quotes = false;
34   bool in_exponent = false;
35   int digits = 0;
36   
37   for (;;) 
38     {
39       int c = getchar ();
40       if (c == EOF)
41         break;
42       else if (c == '\n') 
43         in_quotes = false;
44       else if (c == '"') 
45         {
46           in_quotes = !in_quotes;
47           in_exponent = false;
48           digits = 0;
49         }
50       else if (in_quotes && !in_exponent) 
51         {
52           if (strchr ("+dDeE", c) != NULL || (c == '-' && digits))
53             in_exponent = true;
54           else if (strchr ("0123456789}JKLMNOPQR", c) != NULL)
55             {
56               if (digits || c >= '1')
57                 digits++;
58               if (digits > 13)
59                 c = isdigit (c) ? '#' : '@';
60             }
61         }
62       putchar (c);
63     }
64   return EXIT_SUCCESS;
65 }