X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-reader.h;h=a8f16e10db5e452299bb4ffbdb7b24f8e91dd98f;hb=c81025c3b79323fcec83fa848b682c551158c3f0;hp=5bd87fc326f49ffbcc6b6effaee7dda97ab72be4;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp diff --git a/src/data/sys-file-reader.h b/src/data/sys-file-reader.h index 5bd87fc326..a8f16e10db 100644 --- a/src/data/sys-file-reader.h +++ b/src/data/sys-file-reader.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2009, 2011, 2012 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 @@ -20,27 +20,39 @@ #include #include -#include -#include +#include "data/case.h" +#include "libpspp/float-format.h" +#include "libpspp/integer-format.h" /* Reading system files. */ -/* System file info that doesn't fit in struct dictionary. */ +/* System file info that doesn't fit in struct dictionary. + + The strings in this structure are encoded in UTF-8. (They are normally in + the ASCII subset of UTF-8.) */ struct sfm_read_info { - char creation_date[10]; /* `dd mmm yy' plus a null. */ - char creation_time[9]; /* `hh:mm:ss' plus a null. */ + char *creation_date; /* "dd mmm yy". */ + char *creation_time; /* "hh:mm:ss". */ 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. */ + casenumber case_cnt; /* -1 if unknown. */ + char *product; /* Product name. */ + + /* Writer's version number in X.Y.Z format. + The version number is not always present; if not, then + all of these are set to 0. */ + int version_major; /* X. */ + int version_minor; /* Y. */ + int version_revision; /* Z. */ }; +void sfm_read_info_destroy (struct sfm_read_info *); + struct dictionary; struct file_handle; -struct ccase; -struct casereader *sfm_open_reader (struct file_handle *, +struct casereader *sfm_open_reader (struct file_handle *, const char *encoding, struct dictionary **, struct sfm_read_info *); bool sfm_detect (FILE *);