2014-03-12 02:28:15 +01:00
|
|
|
#ifndef _FS_H_
|
2014-07-08 22:41:42 +02:00
|
|
|
#define _FS_H_
|
2014-03-12 02:28:15 +01:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
struct fs_generator;
|
|
|
|
|
2014-05-07 00:14:15 +02:00
|
|
|
const struct fs_generator* fs_get_generator(const char *fs_type);
|
2014-03-12 02:28:15 +01:00
|
|
|
int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|