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