?? ansi.h
字號:
/* * $Id: ansi.h,v 1.1.1.1 2002/03/27 23:25:18 andrew_belov Exp $ * --------------------------------------------------------------------------- * Prototypes of the functions located in ANSI.C are declared here. * */#ifndef ANSI_INCLUDED#define ANSI_INCLUDED/* Standard ANSI sequence identifiers */#define ANSI_ESC 27 /* Escape character */#define ANSI_BRACKET '[' /* Used to identify ANSI sequences */#define ANSI_DELIMITER ';' /* Parameter list delimiter *//* Prototypes */#if TARGET==OS2 #define display_ansi(c) putchar(c)#else void display_ansi(char c);#endif#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -