toaruos/base/usr/include/bits/dirent.h

23 lines
316 B
C
Raw Normal View History

#pragma once
2018-10-12 05:15:40 +03:00
#include <_cheader.h>
#include <stdint.h>
2018-10-12 05:15:40 +03:00
_Begin_C_Header
typedef struct dirent {
uint32_t d_ino;
char d_name[256];
} dirent;
typedef struct DIR {
int fd;
int cur_entry;
} DIR;
DIR * opendir (const char * dirname);
int closedir (DIR * dir);
struct dirent * readdir (DIR * dirp);
2018-10-12 05:15:40 +03:00
_End_C_Header