blob: 0a68507b0180c5a358b25db7862e38ead6e25374 [file] [log] [blame]
#ifndef _FS_H_
#define _FS_H_
#include <string>
#include <stdint.h>
struct fs_generator;
const struct fs_generator* fs_get_generator(const std::string& fs_type);
int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize,
const std::string& initial_dir);
#endif