#ifndef CORE_FILEIO_H #define CORE_FILEIO_H /* Read config file returns 1 OK 0 error */ extern int config_read(void); /* Write config file returns 1 OK 0 error */ extern int config_write(void); /* Alloc a buffer matching the sizeof a given file returns the pointer or NULL */ extern unsigned char* file_load(char* path); #endif