blob: 97843b2de69549a7bca5059a3d9a2a8d9483d04b (
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
|