summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/storage.h')
-rw-r--r--src/storage/storage.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/storage/storage.h b/src/storage/storage.h
new file mode 100644
index 0000000..c287b23
--- /dev/null
+++ b/src/storage/storage.h
@@ -0,0 +1,14 @@
+#ifndef _ZoO_STORAGE_STORAGE_H_
+#define _ZoO_STORAGE_STORAGE_H_
+
+#include "../pipe/pipe_types.h"
+
+int ZoO_storage_write_line
+(
+ const char filename [const restrict static 1],
+ char line [const restrict static 1],
+ size_t const line_size,
+ const struct ZoO_pipe io [const restrict static 1]
+);
+
+#endif