X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-writer.h;h=9773230e9791b628c14ba65b246008caac8b2ec8;hb=909f10f57c532130c7fb16c103b1328416f5fb06;hp=537f21cbc7b921ef4f5ea978cc09f618489e03f2;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/data/sys-file-writer.h b/src/data/sys-file-writer.h index 537f21cbc7..9773230e97 100644 --- a/src/data/sys-file-writer.h +++ b/src/data/sys-file-writer.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 @@ -25,7 +24,7 @@ /* Writing system files. */ /* Options for creating a system file. */ -struct sfm_write_options +struct sfm_write_options { bool create_writeable; /* File perms: writeable or read/only? */ bool compress; /* Compress file? */ @@ -39,7 +38,7 @@ struct sfm_writer *sfm_open_writer (struct file_handle *, struct dictionary *, struct sfm_write_options); struct sfm_write_options sfm_writer_default_options (void); -int sfm_write_case (struct sfm_writer *, const struct ccase *); +bool sfm_write_case (struct sfm_writer *, const struct ccase *); bool sfm_write_error (const struct sfm_writer *); bool sfm_close_writer (struct sfm_writer *);