1 2 3 4 5 6 7 8 9 10
#ifndef FILEUTILS_H #define FILEUTILS_H #include <stdio.h> // direction is either false=input or true=output and used to overload parameter '-' FILE *fd_magic(char *str, bool direction); #endif // FILEUTILS_H