This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/source/fs.h
2016-03-06 05:04:28 +01:00

16 lines
268 B
C

/*
* fs.h
*/
#ifndef FS_INC
#define FS_INC
#include "types.h"
u8 mountSD(void);
u8 fileRead(u8 *dest, const char *path, u32 size);
u8 fileWrite(const u8 *buffer, const char *path, u32 size);
u32 fileSize(const char* path);
u8 fileExists(const char* path);
#endif