Subversion Repositories SvarDOS

Rev

Rev 269 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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