Mercurial > hg > xemacs-beta
comparison src/ndir.h @ 126:1370575f1259 xemacs-20-1p1
Import from CVS: tag xemacs-20-1p1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:27:39 +0200 |
parents | 376386a54a3c |
children | 41ff10fd062f |
comparison
equal
deleted
inserted
replaced
125:8b0638b347ec | 126:1370575f1259 |
---|---|
63 int dd_loc; /* offset in block */ | 63 int dd_loc; /* offset in block */ |
64 int dd_size; /* amount of valid data */ | 64 int dd_size; /* amount of valid data */ |
65 char dd_buf[DIRBLKSIZ]; /* directory block */ | 65 char dd_buf[DIRBLKSIZ]; /* directory block */ |
66 } DIR; /* stream data from opendir() */ | 66 } DIR; /* stream data from opendir() */ |
67 | 67 |
68 extern DIR *opendir (CONST char *filename) | 68 extern DIR *opendir (CONST char *filename); |
69 extern int closedir (DIR *dirp); | 69 extern int closedir (DIR *dirp); |
70 extern struct direct *readdir (DIR *dirp); | 70 extern struct direct *readdir (DIR *dirp); |
71 extern struct direct *readdirver (DIR *dirp); | 71 extern struct direct *readdirver (DIR *dirp); |
72 extern long telldir (DIR *dirp); | 72 extern long telldir (DIR *dirp); |
73 extern void seekdir (DIR *dirp, long loc); | 73 extern void seekdir (DIR *dirp, long loc); |