Newer
Older
Atmosphere / fusee / fusee-loader / src / sd_utils.c
@Michael Scire Michael Scire on 7 Apr 2018 231 bytes Sketch out more of fusee
#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;
}