summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
Diffstat (limited to 'file.h')
-rw-r--r--file.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/file.h b/file.h
index f923ce0..97843b2 100644
--- a/file.h
+++ b/file.h
@@ -4,10 +4,10 @@
#include <stdio.h>
struct FileContent {
- const char *content;
- size_t count;
+ const char* content;
+ size_t count;
};
-struct FileContent read_entire_file(const char *file_path);
+struct FileContent read_entire_file(const char* file_path);
#endif