1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-14 16:06:56 +00:00
Atmosphere/fusee/fusee-secondary/src/sd_utils.c
2018-04-26 04:47:22 -06:00

11 lines
No EOL
273 B
C

#include "sd_utils.h"
size_t 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;
}