LibC: add dirent.h
This commit is contained in:
15
libc/include/dirent.h
Normal file
15
libc/include/dirent.h
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user