Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
file.qh
Go to the documentation of this file.
1#pragma once
2
4bool fexists(string f)
5{
6 int fh = fopen(f, FILE_READ);
7 if (fh < 0) return false;
8 fclose(fh);
9 return true;
10}
const float FILE_READ
ERASEABLE bool fexists(string f)
Definition file.qh:4
#define ERASEABLE
Definition _all.inc:37
void fclose(float fhandle)
float fopen(string filename, float mode)