18 lines
327 B
C
18 lines
327 B
C
#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 */
|