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

📄 libcb.h

📁 一个编译器修改的例子
💻 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 + -