From bfdbb1e1316225f5bff0309a1b9008dcff567cf5 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Thu, 19 Jun 2025 11:26:52 +0530 Subject: refactor: move file functions into filehandler --- include/filehandler.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/filehandler.h (limited to 'include/filehandler.h') diff --git a/include/filehandler.h b/include/filehandler.h new file mode 100644 index 0000000..8868af7 --- /dev/null +++ b/include/filehandler.h @@ -0,0 +1,9 @@ +#ifndef __FILEHANDLER_H +#define __FILEHANDLER_H + +#include + +char *fcontent(FILE *f, unsigned int size); +unsigned int fsize(FILE *f); + +#endif -- cgit v1.2.3