mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 17:07:47 +00:00
LibC: Implement the rewinddir() function
This commit is contained in:
parent
8d6e9fad40
commit
2447dcd1ea
2 changed files with 11 additions and 2 deletions
|
@ -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*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue