ansi.h

来自「arj source code」· C头文件 代码 · 共 27 行

H
27
字号
/* * $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 + =
减小字号Ctrl + -
显示快捷键?