data.c.svn-base
来自「SImple Microkernel Distributed Operating」· SVN-BASE 代码 · 共 25 行
SVN-BASE
25 行
#include <stdio.h>struct _iobuf __stdin = { 0, 0, _IOREAD, 0, (unsigned char *)NULL, (unsigned char *)NULL,};struct _iobuf __stdout = { 0, 1, _IOWRITE, 0, (unsigned char *)NULL, (unsigned char *)NULL,};struct _iobuf __stderr = { 0, 2, _IOWRITE | _IOLBF, 0, (unsigned char *)NULL, (unsigned char *)NULL,};FILE *_iotab[OPEN_MAX] = { &__stdin, &__stdout, &__stderr, 0};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?