Subversion Repositories HelenOS

Rev

Rev 2787 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2787 Rev 4692
Line 44... Line 44...
44
typedef struct {
44
typedef struct {
45
    int fd;
45
    int fd;
46
    struct dirent res;
46
    struct dirent res;
47
} DIR;
47
} DIR;
48
 
48
 
49
 
-
 
50
extern DIR *opendir(const char *);
49
extern DIR *opendir(const char *);
51
extern struct dirent *readdir(DIR *);
50
extern struct dirent *readdir(DIR *);
52
extern void rewinddir(DIR *);
51
extern void rewinddir(DIR *);
53
extern int closedir(DIR *);
52
extern int closedir(DIR *);
54
 
53