📄 libcb.h
字号:
#ifndef LIBCB_H#define LIBCB_H#include "rts.h"/* This is part of the runtime system. It is linked with the C code * the compiler produces when compiling Asterix source. It is not part * of the compiler itself. */int cb_WriteLine(void);int cb_WriteString(array);int cb_WriteInt(int);int cb_WriteReal(double);int cb_WriteChar(char);int cb_ReadLine(array *);int cb_ReadString(array *);int cb_ReadInt(int *);int cb_ReadReal(double *);int cb_ReadChar(char *);array cb_StringCopy(array);int cb_StringToInt(array);array cb_IntToString(int);array cb_RealToString(double);double cb_StringToReal(array);double cb_IntToReal(int);int cb_RealToInt(double);int cb_CharToInt(char);char cb_IntToChar(int);double cb_Random(void);#endif /* defined LIBCB_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -