nonstdio.h

来自「Linux内核源代码 为压缩文件 是<<Linux内核>&gt」· C头文件 代码 · 共 19 行

H
19
字号
/* * Copyright (C) Paul Mackerras 1997. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */typedef int	FILE;extern FILE *stdin, *stdout;#define NULL	((void *)0)#define EOF	(-1)#define fopen(n, m)	NULL#define fflush(f)	0#define fclose(f)	0extern char *fgets();#define perror(s)	printf("%s: no files!\n", (s))

⌨️ 快捷键说明

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