1 2 3 4 5 6 7 8 9 10
#ifndef _IO_H #define _IO_H #include <stddef.h> #include <stdbool.h> bool ReadFile(const char * const path, const size_t n, char * const buffer); #endif