move.c

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

C
18
字号
/*	move.c	4.1	83/03/09	*//* * move to (x, y).  Both the _pen and cursor are supposed to be moved. * We really just remember it for later, in case we move again. */#include "2648.h"move(x, y){#ifdef TRACE	if (trace)		fprintf(trace, "\tmove(%d, %d), ", x, y);#endif	_supx = x;	_supy = y;}

⌨️ 快捷键说明

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