mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-05-29 06:55:08 +02:00
9 lines
151 B
C
9 lines
151 B
C
#include <dirent.h>
|
|
#include <unistd.h>
|
|
|
|
struct dirent *readdir(DIR *dp)
|
|
{
|
|
struct dirent *ent = NULL;
|
|
read(dp->fd, &ent, sizeof ent);
|
|
return ent;
|
|
}
|