Rev 229 | Blame | Last modification | View Log | RSS feed
/*
* fileexists checks whether a file exists or not.
* returns 0 if file not found, non-zero otherwise.
*/
#ifndef fileexists_sentinel
#define fileexists_sentinel
int fileexists(const char *filename);
#endif