• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 *head;
11  	struct block_range *tail;
12  };
13  
14  extern struct fsmap_format base_fs_format;
15  
16  struct ext2fs_hashmap *basefs_parse(const char *file, const char *mountpoint);
17  
18  #endif /* !BASE_FS_H */
19