forked from Bananymous/banan-os
LibC: add dirent.h
This commit is contained in:
parent
0d356c5bbc
commit
a011c0384f
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
|
||||
struct DIR;
|
||||
|
||||
struct dirent
|
||||
{
|
||||
ino_t d_ino;
|
||||
char d_name[];
|
||||
};
|
||||
|
||||
__END_DECLS
|
Loading…
Reference in New Issue