Subversion Repositories SvarDOS

Rev

Rev 614 | Blame | Compare with Previous | 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