mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-12-27 10:41:50 +01:00
20 lines
335 B
C
20 lines
335 B
C
#ifndef UTILS_FS_H__
|
|
#define UTILS_FS_H__
|
|
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
|
|
#define FS_SECTOR_SIZE (512)
|
|
|
|
|
|
bool file_exists (char *path);
|
|
size_t file_get_size (char *path);
|
|
bool file_allocate (char *path, size_t size);
|
|
bool file_get_sectors (char *path, uint32_t *sectors, size_t entries);
|
|
|
|
|
|
#endif
|