1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-10-01 03:13:25 +01:00
Atmosphere/fusee/fusee-primary/src/sd_utils.c

10 lines
231 B
C
Raw Normal View History

2018-04-07 22:43:54 +01: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;
}