blob: e9f46b4ab08663d77b153c1cdc20cbdc76de8f92 [file] [log] [blame]
#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 *head;
struct block_range *tail;
};
extern struct fsmap_format base_fs_format;
struct ext2fs_hashmap *basefs_parse(const char *file, const char *mountpoint);
#endif /* !BASE_FS_H */