pl0const.h

来自「PL0文法编译器」· C头文件 代码 · 共 12 行

H
12
字号
/********************************************************************
   Program :  Recursive Descent Compiler for PL/0
   Modul   :  PL0CONST - Global constants
   File    :  pl0const.h
********************************************************************/

#define  norw      15         /* number of reserved words */
#define  imax   32767         /* maximum integer value */
#define  cmax      11         /* maximum number of chars for idents */
#define  nestmax    5         /* maximum depth of block nesting */                
#define  strmax   256         /* maximum length of strings */

⌨️ 快捷键说明

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