9468582d83
GCC, why no u warn me of strict aliasing
13 lines
247 B
C
13 lines
247 B
C
/*
|
|
* fs.h
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#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); |