?? vtcolor.c
字號:
/*******************************************************/
/* */
/* VTcolor.c -- VT100-compatible ANSI color and */
/* cursor positioning routines */
/* */
/* Copyright (C) 2004, Douglas Beattie Jr. */
/* */
/*******************************************************/
#include <stdio.h>
#include "F91eval.h"
#include "vtColor.h"
void clrscr(void)
{
putch(0x1B);
printf("[2J");
}
void gotoxy(unsigned char x, unsigned char y)
{
putch(27);
printf("[%d;%df",y,x);
}
void color(enum foreground_colors newcolor)
{
putch(27);
printf("[1;%d;40m",newcolor);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -