discoverpixy
ll_filesystem.h
Go to the documentation of this file.
1 #include "filesystem.h"
2 
3 bool ll_filesystem_init();
4 
7 FILE_HANDLE* ll_filesystem_file_open(const char* filename);
9 FILE_STATUS ll_filesystem_file_seek(FILE_HANDLE* handle, uint32_t offset);
10 FILE_STATUS ll_filesystem_file_read(FILE_HANDLE* handle, uint8_t* buf, uint32_t size);
11 FILE_STATUS ll_filesystem_file_write(FILE_HANDLE* handle, uint8_t* buf, uint32_t size);
FILE_STATUS ll_filesystem_file_seek(FILE_HANDLE *handle, uint32_t offset)
Definition: filesystem.h:44
FILE_STATUS
Definition: filesystem.h:50
FILE_HANDLE * ll_filesystem_file_open(const char *filename)
void ll_filesystem_dir_close(DIRECTORY_STRUCT *dir)
void ll_filesystem_file_close(FILE_HANDLE *handle)
Definition: filesystem.h:38
FILE_STATUS ll_filesystem_file_write(FILE_HANDLE *handle, uint8_t *buf, uint32_t size)
DIRECTORY_STRUCT * ll_filesystem_dir_open(const char *path)
bool ll_filesystem_init()
FILE_STATUS ll_filesystem_file_read(FILE_HANDLE *handle, uint8_t *buf, uint32_t size)