home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / M2V11-2.LHA / modula / dice / dice.lha / include / sys / dir.h next >
Encoding:
C/C++ Source or Header  |  1991-02-17  |  216 b   |  16 lines

  1.  
  2. typedef struct {
  3.     long    am_Private;
  4. } DIR;
  5.  
  6. struct direct {
  7.     char    *d_name;
  8.     short   d_namlen;
  9. };
  10.  
  11. DIR *opendir(const char *);
  12. struct direct *readdir(DIR *);
  13. int rewinddir(DIR *);
  14. int closedir(DIR *);
  15.  
  16.