2016-03-19 17:30:56 +01:00
|
|
|
/*
|
|
|
|
* fs.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
u32 mountSD(void);
|
2016-03-24 00:14:29 +01:00
|
|
|
u32 unmountSD(void);
|
2016-03-25 01:59:12 +01:00
|
|
|
u32 fileRead(void *dest, const char *path, u32 size);
|
2016-03-19 17:30:56 +01:00
|
|
|
u32 fileSize(const char *path);
|