summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'file.h')
-rw-r--r--file.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/file.h b/file.h
new file mode 100644
index 0000000..304cc75
--- /dev/null
+++ b/file.h
@@ -0,0 +1,8 @@
+#ifndef _H_FILE
+#define _H_FILE
+
+#include <stddef.h>
+
+size_t file_read(const char *, char **);
+
+#endif