X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fformat.h;h=fbaf062558aab7e5704cbc190da9fe6577c651ee;hb=2c7d1b0285e21571b1e50def87e33095f095ce4e;hp=51484a3b1f1b260c1d02088888c2c56cf884a640;hpb=5bacd5c053e285ccfba287d2b28079f1d1c49cc9;p=pspp diff --git a/src/data/format.h b/src/data/format.h index 51484a3b1f..fbaf062558 100644 --- a/src/data/format.h +++ b/src/data/format.h @@ -1,21 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . - 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 . */ #ifndef FORMAT_H #define FORMAT_H 1 @@ -28,7 +25,7 @@ #include /* Format type categories. */ -enum fmt_category +enum fmt_category { /* Numeric formats. */ FMT_CAT_BASIC = 0x001, /* Basic numeric formats. */ @@ -90,6 +87,7 @@ bool fmt_check_width_compat (const struct fmt_spec *, int var_width); int fmt_var_width (const struct fmt_spec *); char *fmt_to_string (const struct fmt_spec *, char s[FMT_STRING_LEN_MAX + 1]); bool fmt_equal (const struct fmt_spec *, const struct fmt_spec *); +void fmt_resize (struct fmt_spec *, int new_width); /* Format types. */ const char *fmt_name (enum fmt_type) PURE_FUNCTION;