Add support for reading and writing SPV files.
[pspp] / src / libpspp / zip-writer.h
index aff3f994f364f0ea242559fd6001abe3c731e70e..1b5b359fb9725d7dd55e5a43f1924c72636d7548 100644 (file)
 
 struct zip_writer *zip_writer_create (const char *file_name);
 void zip_writer_add (struct zip_writer *, FILE *, const char *member_name);
+void zip_writer_add_string (struct zip_writer *, const char *member_name,
+                            const char *content);
+void zip_writer_add_memory (struct zip_writer *, const char *member_name,
+                            const void *content, size_t size);
 bool zip_writer_close (struct zip_writer *);
 
 #endif /* libpspp/zip-writer.h */