blob: f923ce04a90e02a82b37f01c26818da0f9d82eae (
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
|