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

📄 pbc_parse.h

📁 这是一个C的源代码
💻 H
字号:
//requires// * fops.h#ifndef __PBC_PARSE_H__#define __PBC_PARSE_H__enum {    token_none = 0,    token_langle,    token_langleslash,    token_rangle,    token_word,    token_eof,};struct token_s {    int type;    char *s;};typedef struct token_s token_t[1];typedef struct token_s *token_ptr;void token_init(token_t tok);void token_clear(token_t tok);void token_get_generic (token_t tok, fetch_ops_t fops, void *ctx);#endif //__PBC_PARSE_H__

⌨️ 快捷键说明

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