summaryrefslogtreecommitdiffstats
path: root/fastboot/fs.h
blob: 8388629c8d2463e40f1d7e11e9de9cbf63249a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _FS_H_
#define _FH_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