home *** CD-ROM | disk | FTP | other *** search
/ Los Alamos National Laboratory / LANL_CD.ISO / software / compres / src / node2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-04  |  81 b   |  8 lines

  1. struct node {
  2.  
  3.     int type;
  4.     struct node *node0;
  5.     struct node *node1;
  6.  
  7. };
  8.