mvscanw.c
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 22 行
C
22 行
#ifdef lintstatic char *sccsid = "@(#)mvscanw.c 4.1 (ULTRIX) 7/2/90";#endif lint# include "curses.ext"/* * implement the mvscanw commands. Due to the variable number of * arguments, they cannot be macros. Another sigh.... * * 1/26/81 (Berkeley) @(#)mvscanw.c 1.1 *//* VARARGS */mvscanw(y, x, fmt, args)reg int y, x;char *fmt;int args; { return move(y, x) == OK ? _sscans(stdscr, fmt, &args) : ERR;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?