1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-13 23:46:40 +00:00
Atmosphere/fusee/fusee-secondary/src/fs_utils.c

16 lines
350 B
C
Raw Normal View History

#include <stdio.h>
2018-05-13 22:49:50 +01:00
#include "fs_utils.h"
#include "hwinit.h"
#include "sdmmc.h"
2018-05-13 22:49:50 +01:00
size_t read_from_file(void *dst, size_t dst_size, const char *filename) {
FILE *file = fopen(filename, "rb");
if (file == NULL) {
return 0;
} else {
size_t sz = fread(dst, 1, dst_size, file);
fclose(file);
return sz;
}
2018-05-04 23:11:22 +01:00
}