#define HLP_2 "Screen: C Home and clear, c Clear to end of display\nStyles: p Plain, b Bold, i Italic, u Underscore, r Reverse, d Default\n"
#define HLP_3 "Cursor: < Invisible, > Visible, H Home, (x,y) Cursor positioning\nLine control: n Newline, f Carriage Return, s no Newline at the end\n"
#define HLP_4 "Tabs: v Vertical, t Horizontal\n"
#ifdef EXTRA
#define HLP_A "Variables: [var..var] where var = {d1..d7,t1..t7,w1..w2,p}\nDelays: W Wait for ENTER, Dx Wait for x seconds\n"
#define HLP_B "Environment: {variable} where variable is an ENV: variable\n $command$ will execute the command from current CLI\n"
#endif
#define HLP_X "\nECO ? or ECO \\h for help, ECO \042?\042 or ECO \\? to output ? as first char in list.\n\n"
/* Control Sequences Definitions */
#define ESCAPE '\\' /* Escape character */
#define ESC "\\" /* Escape character */
#define DEF "\2330;31;40m" /* Normal */
#define F_0 "\23330m" /* Foreground 0 */
#define F_1 "\23331m" /* Foreground 1 */
#define F_2 "\23332m" /* Foreground 2 */
#define F_3 "\23333m" /* Foreground 3 */
#define B_0 "\23340m" /* Background 0 */
#define B_1 "\23341m" /* Background 1 */
#define B_2 "\23342m" /* Background 2 */
#define B_3 "\23343m" /* Background 3 */
#define S_P "\2330m" /* Plain */
#define S_B "\2331m" /* Bold */
#define S_I "\2333m" /* Italic */
#define S_U "\2334m" /* Underscore */
#define S_R "\2337m" /* Reverse */
#define VT "\v" /* Vertical tab */
#define HT "\t" /* Horizontal tab */
#define CRLF "\n" /* newline */
#define CR "\x0D" /* carriage return -- first column */
#define HOME "\233H" /* home */
#define CLSALL "\233H\233J" /* home and clear screen */
#define CLS "\233J" /* clear screen */
#define CUROFF "\2330 p" /* make cursor invisible */