Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 758 → Rev 759

/pkg/tags/20220216/fileexst.h
0,0 → 1,11
/*
* 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