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