|
|
1.1 root 1: /* exists.c
2: Check whether a file exists. */
3:
4: #include "uucp.h"
5:
6: #include "sysdep.h"
7: #include "system.h"
8:
9: boolean
10: fsysdep_file_exists (zfile)
11: const char *zfile;
12: {
13: struct stat s;
14:
15: return stat ((char *) zfile, &s) == 0;
16: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.