Change read_sd_file semantics to return size read.

This commit is contained in:
Michael Scire 2018-04-26 04:47:22 -06:00
parent 222ec1cd7f
commit ea609e68d3
6 changed files with 8 additions and 5 deletions

View file

@ -1,6 +1,6 @@
#include "sd_utils.h"
int read_sd_file(void *dst, size_t dst_size, const char *filename) {
size_t read_sd_file(void *dst, size_t dst_size, const char *filename) {
/* TODO: Implement this function. */
(void)(dst);
(void)(dst_size);