vfs: add follow_path function

This commit is contained in:
2025-09-23 19:38:14 +03:00
parent 1fb777adb0
commit f697fab390
4 changed files with 85 additions and 3 deletions
+1
View File
@@ -20,5 +20,6 @@ size_t vfs_read_file_length(l9660_file *file, uint8_t* buffer, size_t length);
void test_iso9660();
int vsf_read_file_by_path(const char* path, uint8_t** buffer, l9660_dir* dir);
void follow_path(const char* path, l9660_file* file, l9660_dir* dir);
#endif