io.h

来自「cpu的源码」· C头文件 代码 · 共 17 行

H
17
字号
/* IO can be one of the following: * * IO_TERM : output to the terminal * IO_FILE : output to the file output.bin * IO_FD3  : output to the file descriptor no. 3 * IO_OCP  : write to OCP */#define IO_TERM 0#define IO_FILE 1#define IO_FD3  2#define IO_OCP  3int read(int io, void *buf, int count);int write(int io, const void *buf, int count);

⌨️ 快捷键说明

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