mvprintw.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 22 行

C
22
字号
#ifdef lintstatic char *sccsid = "@(#)mvprintw.c	4.1	(ULTRIX)	7/2/90";#endif lint# include	"curses.ext"/* * implement the mvprintw commands.  Due to the variable number of * arguments, they cannot be macros.  Sigh.... * * 1/26/81 (Berkeley) @(#)mvprintw.c	1.1 *//* VARARGS */mvprintw(y, x, fmt, args)reg int		y, x;char		*fmt;int		args; {	return move(y, x) == OK ? _sprintw(stdscr, fmt, &args) : ERR;}

⌨️ 快捷键说明

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