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

📄 input.h

📁 UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, wh
💻 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 + -