stdio.h
来自「C,C++ To Delphi转换器 C,C++ To Delphi转换器」· C头文件 代码 · 共 21 行
H
21 行
/*
** STDIO.H -- Standard Small C Definitions.
*/
#define stdin 0 /* file descriptor for standard input file */
#define stdout 1 /* file descriptor for standard output file */
#define stderr 2 /* file descriptor for standard error file */
#define stdaux 3 /* file descriptor for standard auxiliary port */
#define stdprn 4 /* file descriptor for standard printer */
#define FILE char /* supports "FILE *fp;" declarations */
#define ERR (-2) /* return value for errors */
#define EOF (-1) /* return value for end-of-file */
#define YES 1 /* true */
#define NO 0 /* false */
#define NULL 0 /* zero */
#define CR 13 /* ASCII carriage return */
#define LF 10 /* ASCII line feed */
#define BELL 7 /* ASCII bell */
#define SPACE ' ' /* ASCII space */
#define NEWLINE LF /* Small C newline character */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?