This is dirent.h in view mode; [Download] [Up]
/* Typedef declarations. */ struct dirent { char d_name[255]; int d_namlen; }; typedef struct _dirdesc { long context; char *pattern; struct dirent entry; char pat; } DIR; /* Dirent utilities routines. */ extern char *mktemp(char *); extern DIR *opendir(char *); extern struct dirent *readdir(DIR *); extern void closedir(DIR *);
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.