mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2025-01-23 08:21:11 +01:00
16 lines
283 B
C
16 lines
283 B
C
#ifndef _FAT_H_
|
|
#define _FAT_H_
|
|
|
|
#define SD 1
|
|
#define USB 2
|
|
|
|
/* Prototypes */
|
|
s32 Fat_Mount(int);
|
|
s32 Fat_Unmount(void);
|
|
s32 Fat_ReadFile(const char *, void **);
|
|
int Fat_MakeDir(const char *);
|
|
bool Fat_CheckFile(const char *);
|
|
s32 Fat_SaveFile(const char *, void **, u32);
|
|
|
|
#endif
|