#pragma once struct mufs_dtree { uint32_t file_size; uint32_t root; uint8_t depth; } __attribute__((packed)); struct mufs_dentry { uint8_t type; struct mufs_dtree tree; uint16_t path_len; } __attribute__((packed)); #define MUFS_FILE BIT(0) #define MUFS_DIR BIT(1)