20 lines
280 B
C
20 lines
280 B
C
|
#ifndef FILEUTIL_H
|
||
|
#define FILEUTIL_H
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
|
||
|
/*
|
||
|
* fileutil.h - file utility interface
|
||
|
*
|
||
|
* include LICENSE
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* prototypes
|
||
|
*/
|
||
|
int file_exists (const char *filename);
|
||
|
off_t file_size (const char *filename);
|
||
|
|
||
|
#endif /* FILEUTIL_H */
|