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

📄 parse.h

📁 C语言前端编译器,yacc/lex编写,可自行修改代码.
💻 H
字号:
// Copyright 2002 by Keith Vallerio.
// All rights reserved.

/************************************************************
  parse.h

  Header file used to interface scan.l, gram.y and parse.cc
************************************************************/


#ifndef PARSE_H_
#define PARSE_H_
#include <string>

// global variables used by scan.l, gram.y and parse.cc
extern int yytypedef_flag;
extern int column;

// interface functions
void yytypedef_table_add(string str);
char yytypedef_table_lookup(string str);
void yypopulate_tree (string str, long n);
void yyadd_whitespace (string str);

#endif

⌨️ 快捷键说明

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