home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / NEXTARCH / DIRENTRY.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-24  |  142 b   |  8 lines

  1. typedef struct _DirEntry {
  2.     char mode[10];
  3.     int bytes;
  4.     char date[13];
  5.     char *name;
  6.     struct _DirEntry *next;
  7. } DirEntry, *DirEntryPtr;
  8.