Atmosphere/fusee/fusee-secondary/src/sd_utils.c
2018-04-07 22:51:24 -06:00

11 lines
270 B
C

#include "sd_utils.h"
int read_sd_file(void *dst, size_t dst_size, const char *filename) {
/* TODO: Implement this function. */
(void)(dst);
(void)(dst_size);
(void)(filename);
/* Fail, because this function is unimplemented. */
return 0;
}