Add recursive scanning
[erinaco.git] / file.c
blob61b2ab6be17f643975000c757a5d1535a2dc3b81
1 #include <stdbool.h>
2 #include <unistd.h>
3 #include "file.h"
5 bool exists(const char *pathname)
7 return access(pathname, X_OK) == 0;