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

📄 pretty.h

📁 c语言的简化编译器
💻 H
字号:
#ifndef __PRETTY_H__
#define __PRETTY_H__


/* wig pretty.h
 *
 * History:
 * 21.10.2000 - created
 */

#define PRINTSYMBOL 0


#include <stdio.h>
#include "tree.h"

#if (PRINTSYMBOL)
#include "symbol.h"
#endif


void prettyModifierKind(ModifierKind modifierKind);
void prettySCRIPTCOLLECTION(SCRIPTCOLLECTION *scriptcollection);
void prettyTOPLEVEL(int indent, TOPLEVEL *toplevel);
void prettyFUNCTION(int indent, FUNCTION *function);
void prettyTRIGGER(TRIGGER *trigger);
void prettyPROGRAM(int indent, PROGRAM *program);
void prettyTYPE(TYPE *type);
void prettyDECL(int indent, DECL *decl);
void prettyFORINIT(int indent, FORINIT *forinit);
void prettySTM(int indent, STM *stm);
void prettyIDENTIFIER(IDENTIFIER *identifier);
void prettyEXP(EXP *exp);
void prettyLVALUE(LVALUE *lvalue);
/*
void prettySymbolTable(int indent, SymbolTable *sym);
void prettySYMBOL(int indent, SYMBOL *s);
*/
#endif

⌨️ 快捷键说明

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