1 #ifndef _HISTORY_H_ 2 #define _HISTORY_H_ 3 4 #define SH_ARROW_ANY "\x1b\x5b" 5 #define SH_ARROW_UP '\x41' 6 #define SH_ARROW_DOWN '\x42' 7 #define SH_ARROW_RIGHT '\x43' 8 #define SH_ARROW_LEFT '\x44' 9 #define SH_DEL_CHAR '\x7F' 10 #define SH_BLANK_CHAR '\x20' 11 12 #endif 13 14