aboutsummaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'file.h')
-rw-r--r--file.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/file.h b/file.h
new file mode 100644
index 0000000..31a6e7d
--- /dev/null
+++ b/file.h
@@ -0,0 +1,13 @@
1#ifndef FILE_H
2#define FILE_H
3
4#include <stdio.h>
5
6struct FileContent {
7 const char *content;
8 size_t count;
9};
10
11struct FileContent read_entire_file(const char *file_path);
12
13#endif