]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/file.qh
Merge branch 'master' into Mario/bulldozer
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / file.qh
1 #ifndef FILE_H
2 #define FILE_H
3
4 bool fexists(string f)
5 {
6         int fh = fopen(f, FILE_READ);
7         if (fh < 0) return false;
8         fclose(fh);
9         return true;
10 }
11
12 #endif