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