1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:07:44 +00:00

LibC: Implement the rewinddir() function

This commit is contained in:
Gunnar Beutner 2021-04-25 09:41:45 +02:00 committed by Andreas Kling
parent 8d6e9fad40
commit 2447dcd1ea
2 changed files with 11 additions and 2 deletions

View file

@ -50,6 +50,7 @@ typedef struct __DIR DIR;
DIR* opendir(const char* name);
int closedir(DIR*);
void rewinddir(DIR*);
struct dirent* readdir(DIR*);
int readdir_r(DIR*, struct dirent*, struct dirent**);
int dirfd(DIR*);