#ifndef NEBU_FILE_SYSTEM_H #define NEBU_FILESYSTEM_H #include "base/nebu_types.h" #include "filesystem/nebu_file_io.h" #include #include extern void initFilesystem(int argc, const char *argv[]); extern List* readDirectoryContents(const char *dirname, const char *prefix); /* findpath.c, GPL'd code */ extern void goto_installpath(const char *executable); extern void dirSetup(const char *executable); extern int fileExists(const char *path); extern void makeDirectory(const char* name); #endif