summaryrefslogtreecommitdiff
path: root/src/util/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/file.h')
-rw-r--r--src/util/file.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/util/file.h b/src/util/file.h
new file mode 100644
index 0000000..d921456
--- /dev/null
+++ b/src/util/file.h
@@ -0,0 +1,10 @@
+#ifndef ANIMTOOL_FILE_H_
+#define ANIMTOOL_FILE_H_
+
+#include <stdio.h>
+#include "util/str.h"
+
+FILE *file_open(str s_path, const char *mode);
+str file_read(FILE *file);
+
+#endif