mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-15 01:26:34 +00:00
10 lines
231 B
C
10 lines
231 B
C
|
#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;
|
||
|
}
|