blob: d811def0c466c83a017e2feec29b9fdf49ed9a7b [file] [log] [blame]
Thomas Heijligen75d1ff32023-12-04 13:40:11 +00001#ifndef VFS_H
2#define VFS_H
3
4/** mount_fs
5 * @param fs_name Name of filesystem or NULL for auto selection
6 * @return 1 on success, 0 on failure
7 */
8int mount_fs(char *fs_name);
9
10/** file_open
11 * @param filename
12 * @return 1 on success, 0 on failure
13 */
14int file_open(const char *filename);
15
16/** file_read
17 * @param buf
18 * @param len Size of buffer / bytes to read
19 * @return Number of bytes read
20 */
21int file_read(void *buf, unsigned long len);
22
23unsigned long file_seek(unsigned long offset);
24/**file_size
25 * @return Filesize in bytes
26 */
27unsigned long file_size(void);
28
29void file_close(void);
30
Nico Huberfcd5f0e2024-01-23 16:22:29 +010031int ext2fs_mount(void);
32int ext2fs_read(char *buf, int len);
33int ext2fs_dir(char *path);
34
Thomas Heijligen75d1ff32023-12-04 13:40:11 +000035#endif /* VFS_H */