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

13 lines
247 B
C
Raw Normal View History

2015-08-05 03:57:37 +02:00
/*
* fs.h
*/
#pragma once
2015-08-05 03:57:37 +02:00
#include "types.h"
u32 mountSD(void);
u32 fileRead(u8 *dest, const char *path, u32 size);
u32 fileWrite(const u8 *buffer, const char *path, u32 size);
u32 fileSize(const char *path);
u32 fileExists(const char *path);