📄 input.h
字号:
// $Header: /cvsroot/sourcenav/src/snavigator/demo/c++_demo/glish/input.h,v 1.1.1.1 2002/04/18 23:35:25 mdejong Exp $#ifndef input_h#define input_h#include <stdio.h>#include "Glish/glish.h"class Sequencer;extern Sequencer* current_sequencer;// Whether to use the editline library.#define USE_EDITLINE 1// Line number to associate with the current expression/statement.extern int line_num;extern char* input_file_name;extern FILE* yyin;extern int interactive;extern int statement_can_end;extern int first_line;extern char* yytext;extern const char* glish_init[];extern int in_func_decl;#ifndef AIX_YACCextern int yyparse();extern int yylex();#elseextern "C" { int yyparse(); int yylex();}#endifextern void restart_yylex( FILE* input_file );extern void scan_strings( const char** strings );extern int interactive_read( FILE* file, const char prompt[], char buf[], int max_size );#endif /* input_h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -