mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-14 16:06:56 +00:00
11 lines
No EOL
273 B
C
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;
|
|
} |