mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-28 22:02:39 +02: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;
|
|
} |