#ifndef CORE_FILE_H #define CORE_FILE_H #include <stddef.h> typedef struct { char* data; size_t length; } FileContent; bool readFile(FileContent* f, const char* path); void destroyFileContent(FileContent* f); #endif