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

11 lines
273 B
C
Raw Normal View History

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