?? stdio.pas
字號:
{ C2P convertion of SmallC [2-1-2001] by Paul TOTH }
(*
** STDIO.H -- Standard Small C Definitions.
*)
Unit STDIO;
(*
** STDIO.H -- Standard Small C Definitions.
*)
Interface
Const
stdin =0; (* file descriptor for standard input file *)
stdout=1; (* file descriptor for standard output file *)
stderr=2; (* file descriptor for standard error file *)
stdaux=3; (* file descriptor for standard auxiliary port *)
strprn=4; (* file descriptor for standard printer *)
{#define FILE char /* supports "FILE *fp;" declarations */}
ERR =-2; (* return value for errors *)
EOF =-1; (* return value for end-of-file *)
YES = 1; (* true *)
NO = 0; (* false *)
NULL = 0; (* zero *)
CR =#13; (* ASCII carriage return *)
LF =#10; (* ASCII line feed *)
BELL =#7; (* ASCII bell *)
SPACE =' '; (* ASCII space *)
NEWLINE=LF; (* Small C newline character *)
Implementation
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -