data.c
来自「minix操作系统最新版本(3.1.1)的源代码」· C语言 代码 · 共 29 行
C
29 行
/* * data.c - this is the initialization for the standard streams *//* $Header: /cvsup/minix/src/lib/stdio/data.c,v 1.1.1.1 2005/04/21 14:56:34 beng Exp $ */#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[FOPEN_MAX] = { &__stdin, &__stdout, &__stderr, 0};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?