summaryrefslogtreecommitdiff
path: root/ccc/filelib.h
diff options
context:
space:
mode:
Diffstat (limited to 'ccc/filelib.h')
-rw-r--r--ccc/filelib.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/ccc/filelib.h b/ccc/filelib.h
new file mode 100644
index 0000000..587cddf
--- /dev/null
+++ b/ccc/filelib.h
@@ -0,0 +1,25 @@
+#ifndef FILELIB_H
+#define FILELIB_H
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <stdbool.h>
+#include <zlib.h>
+#include <assert.h>
+#include "util.h"
+
+#define GZIP_EXT ".gz"
+
+
+typedef struct
+{
+ char* name; // relative
+ bool gz;
+} hFile;
+
+hFile* makef(char* fname, const char* mode);
+bool writeln(const char* s, hFile* f);
+
+
+#endif
+