📄 dv_puts.c
字号:
/*@A (C) 1992 Allen I. Holub */
#include "video.h"
#include <tools/termlib.h>
void dv_puts( str, move )
char *str;
int move;
{
/* Write string to screen, moving cursor to end of string only if move is
* true. Use normal attributes.
*/
int orow, ocol;
dv_getyx( &orow, &ocol );
while( *str )
dv_putc( *str++, NORMAL );
if( !move )
dv_ctoyx( orow, ocol );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -