banan-os/libc/include/dirent.h

15 lines
127 B
C
Raw Normal View History

2023-03-25 02:08:33 +02:00
#pragma once
#include <sys/types.h>
__BEGIN_DECLS
struct DIR;
struct dirent
{
ino_t d_ino;
char d_name[];
};
__END_DECLS