waveview/lib/fileutil.h

20 lines
280 B
C
Raw Permalink Normal View History

2022-09-24 17:47:18 -04:00
#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 */