mirror of
https://github.com/wiiu-env/wiiu-nanddumper-payload.git
synced 2024-11-04 18:55:07 +01: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
|