Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 613 → Rev 614

/pkg/trunk/fileexst.c
0,0 → 1,15
/*
* fileexists checks whether a file exists or not.
* returns 0 if file not found, non-zero otherwise.
*/
 
#include <stdio.h>
#include "fileexst.h"
 
int fileexists(const char *filename) {
FILE *fd;
fd = fopen(filename, "rb");
if (fd == NULL) return(0); /* file does not exists */
fclose(fd);
return(1);
}