* Changed dict_get_case_weight() to accept an additional int * flag to complain about...
[pspp] / src / dfm.h
index ef915695f8596120dccd92079d0c56f189b11660..30f12846a808b7869ff134afcb4a25bed2549ed6 100644 (file)
--- a/src/dfm.h
+++ b/src/dfm.h
    than system files).  dfm is an fhuser, so see file-handle.h for the
    fhuser interface. */
 
+#include <stddef.h>
+
 /* I/O utilities. */
 struct file_handle;
+int dfm_open_for_reading (struct file_handle *handle);
+int dfm_open_for_writing (struct file_handle *handle);
 char *dfm_get_record (struct file_handle *handle, int *len);
 int dfm_put_record (struct file_handle *handle, const char *rec, size_t len);