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, unsigned eraseBlkSize = 0, unsigned logicalBlkSize = 0); 12 13 #endif 14