aboutsummaryrefslogtreecommitdiff
path: root/resources.h
diff options
context:
space:
mode:
authorJan Sucan <sucanjan@fit.cvut.cz>2019-04-11 18:44:34 +0200
committerJan Sucan <sucanjan@fit.cvut.cz>2019-04-11 18:44:34 +0200
commit498c691eb0dd19b23f70421484aa6d738f35e73c (patch)
tree10f244796344981ee6e5ddc5f3912372d7c5990b /resources.h
Initial commit
Diffstat (limited to 'resources.h')
-rw-r--r--resources.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/resources.h b/resources.h
new file mode 100644
index 0000000..4b16312
--- /dev/null
+++ b/resources.h
@@ -0,0 +1,17 @@
+#ifndef RESOURCES_H
+#define RESOURCES_H
+
+typedef struct {
+ FILE * in_file;
+ FILE * ref_file;
+ FILE * out_file;
+
+ char * in_buffer;
+ char * ref_buffer;
+ char * out_buffer;
+} resources_t;
+
+void resources_init(resources_t * const res);
+void resources_free(resources_t * const res);
+
+#endif /* RESOURCES_H */