1 2 3 4 5 6 7 8 9
#ifndef UTIL_H #define UTIL_H #include <stdio.h> FILE *open_file(const char *filename, const char *mode); char *find_file(const char *filename); #endif