📄 vidport.c
字号:
/*
** Portable PC screen functions
** Public domain by Bob Stout
** Uses SCROLL.C, also from SNIPPETS
*/
#include <stdio.h>
#include <dos.h>
#include "scrnmacs.h" /* Also in SNIPPETS */
void scroll(int, int, int, int, int, int, int);
#define SCROLL_UP 0
#define SCROLL_DN 1
void GotoXY(int col, int row)
{
union REGS regs;
setbuf(stdout, NULL);
regs.h.dh = (unsigned)row;
regs.h.dl = (unsigned)col;
regs.h.bh = VIDPAGE;
regs.h.ah = 2;
int86(0x10, ®s, ®s);
}
void ClrScrn(int vattrib)
{
union REGS regs;
scroll(SCROLL_UP, 0, vattrib, 0, 0, SCREENROWS, SCREENCOLS);
GotoXY(0, 0); /* Home cursor */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -