pbc_parse.h

来自「这是一个C的源代码」· C头文件 代码 · 共 27 行

H
27
字号
//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 + =
减小字号Ctrl + -
显示快捷键?