From 0a95d2786e403450ceab115c644c8fcc0a115ccc Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 24 Feb 2020 00:11:10 -0500 Subject: Move exists() from deps.h to fs.h --- include/fs.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/fs.h') diff --git a/include/fs.h b/include/fs.h index 7e8ef12..2b656c9 100644 --- a/include/fs.h +++ b/include/fs.h @@ -18,6 +18,7 @@ typedef struct { int _fstree_compare(const FTSENT **a, const FTSENT **b); void fstree_free(FSTree *fsdata); FSTree *fstree(const char *_path, char **filter_by, unsigned int filter_mode); +int exists(const char *filename); int rmdirs(const char *_path); long int get_file_size(const char *filename); int mkdirs(const char *_path, mode_t mode); -- cgit