blob: 8b5cacb104daf6132b867f2942c8cebc436704c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef FILE_H
#define FILE_H
#include <stdio.h>
struct FileContent {
const char *content;
size_t count;
};
struct FileContent read_entire_file(const char *file_path);
#endif
|