ckuext.c
来自「C 语言核心协议的 C 语言源代码」· C语言 代码 · 共 29 行
C
29 行
/* C K U E X T -- UNIX Kermit extras *//* * Copyright (C) 1986, Trustees of Columbia University in the City of * New York. Permission is granted to any individual or institution to * use, copy, or redistribute this software, so long as it is not sold * for profit, provided this copyright notice is retained. */printf2(s,x)char *s,*x;{ char buff[256]; sprintf(buff,s,x); conol(buff);}printf3(s,x1,x2)char *s,*x1,*x2;{ char buff[256]; sprintf(buff,s,x1,x2); conol(buff);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?