mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-03-12 02:24:38 +00:00
14 lines
261 B
C
14 lines
261 B
C
#ifndef FUSEE_SD_UTILS_H
|
|
#define FUSEE_SD_UTILS_H
|
|
|
|
#include "utils.h"
|
|
#include "sdmmc.h"
|
|
#include "lib/fatfs/ff.h"
|
|
|
|
void save_sd_state(void **mmc);
|
|
void resume_sd_state(void *mmc);
|
|
|
|
size_t read_sd_file(void *dst, size_t dst_size, const char *filename);
|
|
|
|
#endif
|