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, 0 insertions, 25 deletions
diff --git a/ccc/filelib.h b/ccc/filelib.h
deleted file mode 100644
index 587cddf..0000000
--- a/ccc/filelib.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#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
-