mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-05-28 05:54:31 -04:00
1.0.60 release
This commit is contained in:
parent
69b6bb8fca
commit
b0568922d2
87 changed files with 9224 additions and 97 deletions
15
vtoycli/fat_io_lib/include/fat_format.h
Normal file
15
vtoycli/fat_io_lib/include/fat_format.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue