1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2025-02-10 02:35:07 +00:00
Atmosphere/fusee/fusee-primary/src/sd_utils.h
2018-05-06 17:22:12 +02:00

10 lines
194 B
C

#ifndef FUSEE_SD_UTILS_H
#define FUSEE_SD_UTILS_H
#include "utils.h"
#include "sdmmc.h"
int initialize_sd(void);
size_t read_sd_file(void *dst, size_t dst_size, const char *filename);
#endif