1 2 3 4 5 6 7 8 9 10
#ifndef ANIMTOOL_FILE_H_ #define ANIMTOOL_FILE_H_ #include <stdio.h> #include "util/str.h" FILE *file_open(str s_path, const char *mode); str file_read(FILE *file); #endif