| 25 | }; |
| 26 | |
| 27 | rt_inline void dfs_vfs_init_node(struct dfs_vfs_node *node) |
| 28 | { |
| 29 | rt_list_init(&node->subnode); |
| 30 | rt_list_init(&node->sibling); |
| 31 | } |
| 32 | |
| 33 | rt_inline void dfs_vfs_append_node(struct dfs_vfs_node *dir, struct dfs_vfs_node *node) |
| 34 | { |
no test coverage detected