mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-03-01 05:04:39 +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;
|
|
} |