#include #ifndef FILE_H #define FILE_H struct filedata { int lc; size_t len; char *buf; }; struct filedata readfile(FILE *fp); #endif