mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-15 04:12:30 +00:00
11 lines
292 B
C
11 lines
292 B
C
#ifndef FUSEE_FS_UTILS_H
|
|
#define FUSEE_FS_UTILS_H
|
|
|
|
#include "utils.h"
|
|
#include "sdmmc.h"
|
|
|
|
size_t get_file_size(const char *filename);
|
|
size_t read_from_file(void *dst, size_t dst_size, const char *filename);
|
|
size_t dump_to_file(const void *src, size_t src_size, const char *filename);
|
|
|
|
#endif
|