?? data.c
字號:
/* * 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -