📄 mvprintw.c
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -