X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-reader.h;h=6a3e7029b529d44169db53191eb4134d612493c2;hb=4ec88a3abb859304f42a5905231704b2ecfaf711;hp=68e6e84ec54497f95a68818187c11f8a5de84fd1;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/data/sys-file-reader.h b/src/data/sys-file-reader.h index 68e6e84ec5..6a3e7029b5 100644 --- a/src/data/sys-file-reader.h +++ b/src/data/sys-file-reader.h @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 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 @@ -23,6 +22,9 @@ #include #include +#include +#include + /* Reading system files. */ /* System file info that doesn't fit in struct dictionary. */ @@ -30,8 +32,9 @@ struct sfm_read_info { char creation_date[10]; /* `dd mmm yy' plus a null. */ char creation_time[9]; /* `hh:mm:ss' plus a null. */ - int big_endian; /* 1=big-endian, 0=little-endian. */ - int compressed; /* 0=no, 1=yes. */ + enum integer_format integer_format; + enum float_format float_format; + bool compressed; /* 0=no, 1=yes. */ int case_cnt; /* -1 if unknown. */ char product[61]; /* Product name plus a null. */ };