Implement read_dir_entry () VFS op, CE add ls command

This commit is contained in:
2026-02-25 16:25:43 +01:00
parent 704db2dfa4
commit 29bbcea435
12 changed files with 189 additions and 23 deletions

10
include/dir_entry.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef _DIR_ENTRY_H
#define _DIR_ENTRY_H
#include <path_defs.h>
struct dir_entry {
char path[PATH_MAX];
};
#endif // _DIR_ENTRY_H