Atmosphere/fusee/fusee-primary/src/sd_utils.c

10 lines
231 B
C
Raw Normal View History

2018-04-07 17:43:54 -04:00
#include "sd_utils.h"
int read_sd_file(void *dst, const char *filename) {
/* TODO: Implement this function. */
(void)(dst);
(void)(filename);
/* Fail, because this function is unimplemented. */
return 0;
}