13 lines
223 B
C
13 lines
223 B
C
|
#ifndef _SFS_H
|
||
|
#define _SFS_H
|
||
|
|
||
|
#include <types.h>
|
||
|
|
||
|
int32_t sfs_init(bool format);
|
||
|
|
||
|
bool sfs_get_formatted_name(const char* raw_name, char output[37]);
|
||
|
|
||
|
int32_t sfs_read_file(char* name, void* buffer, uint32_t num);
|
||
|
|
||
|
#endif
|