• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _FS_H_
2 #define _FS_H_
3 
4 #include <string>
5 #include <stdint.h>
6 
7 struct fs_generator;
8 
9 const struct fs_generator* fs_get_generator(const std::string& fs_type);
10 int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize,
11     const std::string& initial_dir);
12 
13 #endif
14