blob: 65b955563d667e754df65abb1cf678c6f6090735 [file] [log] [blame]
Dmitry Grinberge6f3e9b2014-03-11 18:28:15 -07001#ifndef _FS_H_
2#define _FH_H_
3
4#include <stdint.h>
5
6struct fs_generator;
7
8const struct fs_generator* fs_get_generator(const char* name);
9int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
10
11#endif
12