X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fformats%2Finexactify.c;h=3b94d151105fd9f57a8173dd84c3dbcb762131e5;hb=5424322a9f6fc37dfb09760c779a63460ecf7eb5;hp=168251ab4e7039403513b7adedc941c848998dd8;hpb=8acca2de53c1852f38726f70fc6516b34732a79f;p=pspp diff --git a/tests/formats/inexactify.c b/tests/formats/inexactify.c index 168251ab4e..3b94d15110 100644 --- a/tests/formats/inexactify.c +++ b/tests/formats/inexactify.c @@ -1,21 +1,20 @@ -/* inexactify.c - PSPP test program. - Copyright (C) 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . +/* PSPP - a program for statistical analysis. + Copyright (C) 2006, 2010 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ + +#include #include #include @@ -33,21 +32,21 @@ main (void) bool in_quotes = false; bool in_exponent = false; int digits = 0; - - for (;;) + + for (;;) { int c = getchar (); if (c == EOF) break; - else if (c == '\n') + else if (c == '\n') in_quotes = false; - else if (c == '"') + else if (c == '"') { in_quotes = !in_quotes; in_exponent = false; digits = 0; } - else if (in_quotes && !in_exponent) + else if (in_quotes && !in_exponent) { if (strchr ("+dDeE", c) != NULL || (c == '-' && digits)) in_exponent = true;