home *** CD-ROM | disk | FTP | other *** search
/ gdead.berkeley.edu / gdead.berkeley.edu.tar / gdead.berkeley.edu / pub / cad-tools / ciftomann.tar / Lib / aeledge.h next >
Text File  |  1988-01-28  |  258b  |  15 lines

  1. #define NIL (AEL_EDGEPTR) 0
  2.  
  3. typedef struct aeledgestruct {
  4.     int x;
  5.     int xend;
  6.     int y;
  7.     int sense;
  8.     struct aeledgestruct *next,*last;
  9. } AEL_EDGE,*AEL_EDGEPTR;
  10.  
  11. typedef struct {
  12.     AEL_EDGE *top;
  13.     AEL_EDGE *bottom;
  14. } AEL_LIST,*AEL_LISTPTR;
  15.