You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
327 B
18 lines
327 B
#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 */
|