Added linked-list.[ch] --- a general purpose linked list module.
[pspp-builds.git] / src / file-handle.h
index 00a79109601465fdf05f69710421aec690dd427e..ba0d75108d9e9d48afeec4ecba8d48b0b4ae3155 100644 (file)
@@ -31,9 +31,15 @@ enum file_handle_mode
     MODE_BINARY                 /* Fixed-length records. */
   };
 
+
+
+void fh_init(void);
+void fh_done(void);
+
 /* Parsing handles. */
 struct file_handle *fh_parse (void);
 
+
 /* Opening and closing handles. */
 void **fh_open (struct file_handle *, const char *type, const char *mode);
 int fh_close (struct file_handle *, const char *type, const char *mode);