git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
feat: open(2), close(2), mkdir(2) and readdir(2) syscall
[lunaix-os.git]
/
lunaix-os
/
includes
/
lunaix
/
dirent.h
1
#ifndef __LUNAIX_DIRENT_H
2
#define __LUNAIX_DIRENT_H
3
4
struct dirent
5
{
6
unsigned int d_type;
7
unsigned int d_offset;
8
unsigned int d_nlen;
9
char* d_name;
10
};
11
12
#endif /* __LUNAIX_DIRENT_H */