📄 vb_puts.c
字号:
/*@A (C) 1992 Allen I. Holub */
#include <tools/vbios.h>
void vb_puts( str, move_cur )
char *str;
int move_cur;
{
/* Write a string to the screen in TTY mode. If move_cur is true the cursor
* is left at the end of string. If not the cursor will be restored to its
* original position (before the write).
*/
int posn;
if( !move_cur )
posn = VB_GETCUR();
while( *str )
VB_PUTCHAR( *str++ );
if( !move_cur )
VB_SETCUR( posn );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -