1 /* SPDX-License-Identifier: GPL-2.0+ OR Apache-2.0 */ 2 #ifndef __EROFS_REBUILD_H 3 #define __EROFS_REBUILD_H 4 5 #ifdef __cplusplus 6 extern "C" 7 { 8 #endif 9 10 #include "internal.h" 11 12 struct erofs_dentry *erofs_rebuild_get_dentry(struct erofs_inode *pwd, 13 char *path, bool aufs, bool *whout, bool *opq, bool to_head); 14 15 int erofs_rebuild_load_tree(struct erofs_inode *root, struct erofs_sb_info *sbi); 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif 22