Rename read syscall, vfs_read and so to xxx_read_file

This commit is contained in:
2026-03-01 00:29:04 +01:00
parent 0533c2705d
commit a3b98fcaa2
12 changed files with 41 additions and 41 deletions

View File

@@ -61,7 +61,7 @@ int volume_open (const char* volume);
int volume_close (void);
/* Read a file */
int read (const char* path, size_t off, uint8_t* buffer, size_t size);
int read_file (const char* path, size_t off, uint8_t* buffer, size_t size);
/* describe a file */
int describe (const char* path, struct desc* desc);