📄 pbc_parse.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 + -