#ifndef VFS_NAMESPACE_H #define VFS_NAMESPACE_H #include #include /* Structure for a File System namespace */ struct FileSystem { Object obj; Inode *cwd; ObjectList *cwdPath; Inode *root; }; #endif