Newer
Older
Atmosphere / fusee / fusee-primary / src / sd_utils.c
@Michael Scire Michael Scire on 26 Apr 2018 273 bytes Change read_sd_file semantics to return size read.
#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;
}