Subversion Repositories SvarDOS

Rev

Rev 269 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
219 mateuszvis 1
/*
2
 * fileexists checks whether a file exists or not.
3
 * returns 0 if file not found, non-zero otherwise.
4
 */
5
 
6
#ifndef fileexists_sentinel
7
#define fileexists_sentinel
8
 
229 mateuszvis 9
int fileexists(const char *filename);
219 mateuszvis 10
 
11
#endif