?? symbol.h
字號:
#ifndef SYMREC
#define SYMREC
struct symrec{
char *name;
int type;
union {
double val;
double (*fnctptr)(); /*bltin fuctions*/
int (*defn)(); /* FUNCTION, PROCEDURE*/
char *str;
}value;
struct symrec *next;
};
typedef struct symrec symrec;
extern init_table();
extern symrec *putsym();
extern symrec *getsym();
struct bltin{
char *fname;
double (*bltin)();
};
struct cnst{
char *name;
double val;
};
struct kword{
char *name;
int kval;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -