1 #ifndef BASE_FS_H
2 # define BASE_FS_H
3 
4 # include "fsmap.h"
5 # include "hashmap.h"
6 # include "block_range.h"
7 
8 struct basefs_entry {
9 	char *path;
10 	struct block_range_list blocks;
11 };
12 
13 extern struct fsmap_format base_fs_format;
14 
15 struct ext2fs_hashmap *basefs_parse(const char *file, const char *mountpoint);
16 
17 #endif /* !BASE_FS_H */
18