#ifndef FILE_H #define FILE_H bool fexists(string f) { int fh = fopen(f, FILE_READ); if (fh < 0) return false; fclose(fh); return true; } #endif