Espresso 0.0.1f

This commit is contained in:
2025-07-07 10:41:05 -05:00
parent dbaee2c881
commit f677e2e283
13 changed files with 315 additions and 119 deletions

View File

@ -3,10 +3,13 @@
#include <types.h>
int32_t sfs_init(bool format);
int32_t sfs_init(void);
bool sfs_get_formatted_name(const char* raw_name, char output[37]);
int32_t sfs_read_file(char* name, void* buffer, uint32_t num);
int32_t sfs_create_file(const char* _name, int32_t size_bytes);
int32_t sfs_read_file(char* name, void* buffer, int32_t num);
int32_t sfs_write_file(char* _name, const void* buffer, int32_t num);
#endif