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

📄 symbol.h

📁 掌握如何用C来实现各种算法
💻 H
字号:
/*****************************************************************************
*                                                                            *
*  ------------------------------- symbol.h -------------------------------  *
*                                                                            *
*****************************************************************************/

#ifndef SYMBOL_H
#define SYMBOL_H

/*****************************************************************************
*                                                                            *
*  Define next_token for demonstration purposes.                             *
*                                                                            *
*****************************************************************************/

static char *next_token(const char *istream) {

return NULL;

}

/*****************************************************************************
*                                                                            *
*  Define a symbol structure for demonstration purposes.                     *
*                                                                            *
*****************************************************************************/

typedef struct Symbol_ {

char               *lexeme;
Token              token;

} Symbol;

#endif

⌨️ 快捷键说明

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