1 #pragma once
2 
3 #include <string>
4 #include <stdint.h>
5 
6 struct fs_generator;
7 
8 const struct fs_generator* fs_get_generator(const std::string& fs_type);
9 int fs_generator_generate(const struct fs_generator* gen, const char* fileName, long long partSize,
10     const std::string& initial_dir, unsigned eraseBlkSize = 0, unsigned logicalBlkSize = 0);
11