⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 struct.def

📁 c版本的
💻 DEF
字号:
/* *************** structure definitions ******************** */
struct vars{            /* variable storage                   */
   char varname[7];     /* variable name A-F & I-N            */
   char outtype;        /* output format for variable         */
   double value;        /* value of the variable              */
   };                   /*                                    */
                        /*                                    */
struct lines{           /* dynamic structure for transcripts  */
   struct lines *dn;    /* next transcript line               */
   struct lines *up;    /* last transcript line               */
   char *lineloc;       /* point to dynamic location of line  */
   int linelngt;        /* length of line stored here         */
   char isvalue;        /* 1 = calculated value, 0 = none     */
   char marked;         /* 1 = line marked, 0 = not marked    */
   char strval[13];     /* string representation of variable  */
   };                   /*                                    */
/* ************** end of structure definitions ************** */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -