mirror of
https://github.com/AuroraWright/SafeA9LHInstaller.git
synced 2025-06-26 13:42:45 +00:00
11 lines
152 B
C
11 lines
152 B
C
|
/*
|
||
|
* fs.h
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
u32 mountSD(void);
|
||
|
u32 fileRead(u8 *dest, const char *path, u32 size);
|
||
|
u32 fileSize(const char *path);
|