syscalls: hopefully implement chdir syscall

This commit is contained in:
2025-10-30 22:29:06 +03:00
parent f4b0429062
commit 561de6a4e3
3 changed files with 37 additions and 6 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ size_t vfs_read_file_length(l9660_file *file, uint8_t* buffer, size_t length);
void test_iso9660();
int vfs_read_file_by_path(const char* path, uint8_t** buffer);
void follow_path(const char* path, l9660_file* file, l9660_dir* dir);
int follow_path(const char* path, l9660_file* file, l9660_dir* dir);
l9660_status find_name_for_sector(char* name_buf, int buf_len, l9660_dir* parent_dir, uint32_t child_sector);
bool is_root_dir(l9660_dir* dir);