#include "filesystem/nebu_filesystem.h" #include void initFilesystem(int argc, const char *argv[]) { dirSetup(argv[0]); } int fileExists(const char *path) { FILE *f; if((f = fopen(path, "r"))) { fclose(f); return 1; } return 0; }