aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/filehandler.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/filehandler.h b/include/filehandler.h
new file mode 100644
index 0000000..8868af7
--- /dev/null
+++ b/include/filehandler.h
@@ -0,0 +1,9 @@
+#ifndef __FILEHANDLER_H
+#define __FILEHANDLER_H
+
+#include <stdio.h>
+
+char *fcontent(FILE *f, unsigned int size);
+unsigned int fsize(FILE *f);
+
+#endif