blob: 31a6e7d92aa94541ab2b714ebedd45ca14cbfaac (
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
|