// vfs.h // Author: Josh Holtrop // Date: 03/11/04 // Modified: 06/16/04 #ifndef __HOS_VFS__ #define __HOS_VFS__ __HOS_VFS__ #include "hos_defines.h" #include "lang/string.h" void vfs_init(); int vfs_mount(string device, string mountPoint); void list(); #endif