lib: c: io: implement getdents()

This commit is contained in:
2026-03-24 12:42:39 +00:00
parent 660cb3bd71
commit e30368553f
4 changed files with 44 additions and 0 deletions

View File

@@ -7,4 +7,11 @@
#define SEEK_CUR 1
#define SEEK_END 2
struct dentry {
unsigned long d_ino;
unsigned short d_reclen;
char d_type;
char d_name[];
};
#endif