fc79767fc2
Bug: 20110580 Change-Id: I5d3718103ff581ff3b5241c8b0e52b585b4f37e5
12 lines
243 B
C
12 lines
243 B
C
#ifndef _FS_H_
|
|
#define _FS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
struct fs_generator;
|
|
|
|
const struct fs_generator* fs_get_generator(const char *fs_type);
|
|
int fs_generator_generate(const struct fs_generator* gen, int tmpFileNo, long long partSize);
|
|
|
|
#endif
|
|
|