📄 ce_parse.h
字号:
#ifndef CE_PARSE_H# define CE_PARSE_H# ifndef YYSTYPE# define YYSTYPE int# endif# define TOK_QUESTIONMARK 257# define TOK_COLON 258# define TOK_OR 259# define TOK_AND 260# define TOK_BITWISEOR 261# define TOK_BITWISEXOR 262# define TOK_AMPERSAND 263# define TOK_NOTEQUAL 264# define TOK_EQUAL 265# define TOK_LESSTHAN 266# define TOK_GREATERTHAN 267# define TOK_LESSTHANOREQUALTO 268# define TOK_GREATERTHANOREQUALTO 269# define TOK_SHIFTLEFT 270# define TOK_SHIFTRIGHT 271# define TOK_PLUS 272# define TOK_MINUS 273# define TOK_STAR 274# define TOK_DIVIDE 275# define TOK_MOD 276# define TOK_TILDE 277# define TOK_NOT 278# define TOK_LPAREN 279# define TOK_RPAREN 280# define TOK_OCTALINT 281# define TOK_DECIMALINT 282# define TOK_HEXADECIMALINT 283# define TOK_CHARACTER 284# define TOK_FLOAT 285extern YYSTYPE cppExpYYlval;#endif /* not CE_PARSE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -