mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-12-26 23:25:57 -05:00
16 lines
545 B
C
16 lines
545 B
C
|
#ifndef __FAT_FORMAT_H__
|
||
|
#define __FAT_FORMAT_H__
|
||
|
|
||
|
#include "fat_defs.h"
|
||
|
#include "fat_opts.h"
|
||
|
#include "fat_access.h"
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Prototypes
|
||
|
//-----------------------------------------------------------------------------
|
||
|
int fatfs_format(struct fatfs *fs, uint32 volume_sectors, const char *name);
|
||
|
int fatfs_format_fat16(struct fatfs *fs, uint32 volume_sectors, const char *name);
|
||
|
int fatfs_format_fat32(struct fatfs *fs, uint32 volume_sectors, const char *name);
|
||
|
|
||
|
#endif
|