home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / GENCSRC.ZIP / STRUCT.DEF < prev    next >
Text File  |  1987-11-21  |  1KB  |  18 lines

  1. /* *************** structure definitions ******************** */
  2. struct vars{            /* variable storage                   */
  3.    char varname[7];     /* variable name A-F & I-N            */
  4.    char outtype;        /* output format for variable         */
  5.    double value;        /* value of the variable              */
  6.    };                   /*                                    */
  7.                         /*                                    */
  8. struct lines{           /* dynamic structure for transcripts  */
  9.    struct lines *dn;    /* next transcript line               */
  10.    struct lines *up;    /* last transcript line               */
  11.    char *lineloc;       /* point to dynamic location of line  */
  12.    int linelngt;        /* length of line stored here         */
  13.    char isvalue;        /* 1 = calculated value, 0 = none     */
  14.    char marked;         /* 1 = line marked, 0 = not marked    */
  15.    char strval[13];     /* string representation of variable  */
  16.    };                   /*                                    */
  17. /* ************** end of structure definitions ************** */
  18.