#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;
}