home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / trash / part01 / entry.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-22  |  134 b   |  9 lines

  1. typedef struct entry    entry;
  2. struct entry
  3. {
  4.     unsigned long    ent_key;
  5.     unsigned long    ent_data;
  6.     entry        *ent_left;
  7.     entry        *ent_right;
  8. };
  9.