Newer
Older
Atmosphere / fusee / fusee-primary / src / sd_utils.h
@TuxSH TuxSH on 6 May 2018 194 bytes Don't pass the mmc struct around
#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