Skip to content

Commit

Permalink
dirent: prototypes for seekdir() and closedir()
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Sep 26, 2024
1 parent 12703c9 commit c209677
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/include/kernel/dirent.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ typedef struct {
int opendir(Thread *, uint64_t, const char *);
int closedir(Thread *, DIR *);
int readdir_r(Thread *, uint64_t, DIR *, struct dirent *, struct dirent **);
void seekdir(Thread *, DIR *, long);
long telldir(Thread *, DIR *);

0 comments on commit c209677

Please sign in to comment.