📄 input.h
字号:
// A convenient thin interface to the input stream
#ifndef __INPUT_H
#define __INPUT_H
typedef int (*INTFN) ();
namespace Input {
int lineno() ;
string filename() ;
bool open(const char *fname) ;
void clear() ;
void insert_stream(istream *pos, const char *name, int start_line = 0) ;
void insert_string(char* str);
void grab_next_line(char *buff) ;
char *next_token(bool first=true) ;
void set_open_restore(INTFN module_open, INTFN module_close) ;
PEntry lookup_next_symbol() ;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -