12 lines
152 B
C
12 lines
152 B
C
#ifndef _USR_FILE_H_
|
|
#define _USR_FILE_H_
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#define USR_DISK_PATH "0:/"
|
|
|
|
int8_t usr_file_init(void);
|
|
|
|
#endif
|