Changed all the licence notices in all the files.
[pspp-builds.git] / src / pfm-read.h
index bb37f1db39488613b7e913450b79934422f09638..7c9b5e8871522ec99a0b547f869b4e9132dad0cb 100644 (file)
 
    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., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA. */
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA. */
 
 #ifndef PFM_READ_H
 #define PFM_READ_H
 
 /* Portable file reading. */
 
+#include "bool.h"
+
 /* Portable file types. */
 enum pfm_type
   {
@@ -45,7 +47,7 @@ struct ccase;
 struct pfm_reader *pfm_open_reader (struct file_handle *,
                                     struct dictionary **,
                                     struct pfm_read_info *);
-int pfm_read_case (struct pfm_reader *, struct ccase *);
+bool pfm_read_case (struct pfm_reader *, struct ccase *);
 void pfm_close_reader (struct pfm_reader *);
 
 #endif /* pfm-read.h */