Second Extended Filesystem (ext2) and other improvements (#33)
[lunaix-os.git] / lunaix-os / includes / lunaix / fs / ramfs.h
index 4c77906bf449e75a16b0d1412a077c657d8bd1fa..e430df78182186620f1d58efd12a3dd723a47a78 100644 (file)
 struct ram_inode
 {
     u32_t flags;
+    size_t size;
     char* symlink;
 };
 
 #define RAM_INODE(data) ((struct ram_inode*)(data))
 
-void
-ramfs_init();
-
 #endif /* __LUNAIX_RAMFS_H */