sinout.h

来自「eC++编译器源码」· C头文件 代码 · 共 18 行

H
18
字号
#pragma SInOut
/*TCC04-95 If the field width is too small, it's filled with * */
  boolean ReadString(char &s[], unsigned int &pos, char &out[]);
  boolean ReadCard(char &s[], unsigned int &pos, unsigned int &out);
  boolean ReadInt(char &s[], unsigned int &pos, int &out);
  boolean ReadLongInt(char &s[], unsigned int &pos, long &out);
  boolean ReadReal(char &s[], unsigned int &pos, float &out);
  boolean ReadBase(char &s[], unsigned int &pos, unsigned int &out, unsigned int base);
  boolean ReadLongBase(char &s[], unsigned int &pos, long &out, unsigned int base);
  void WriteCard(char &s[], unsigned int pos, unsigned int in, unsigned int width);
  void WriteInt(char &s[], unsigned int pos, int in, unsigned int width);
  void WriteLongInt(char &s[], unsigned int pos, long in, unsigned int width);
  void WriteReal(char &s[], unsigned int pos, float in, unsigned int width);
  void WriteBase(char &s[], unsigned int pos, unsigned int in, unsigned int width, unsigned int base);
  void WriteLongBase(char &s[], unsigned int pos, long in, unsigned int width, unsigned int base);
  void WriteString(char &s[], unsigned int pos, char in[]);
  void WriteLn(char &s[], unsigned int pos);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?