Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| /** | |
| * @file types.h | |
| * @brief Short type naming and useful memory size macros | |
| * | |
| */ | |
| #include <stdint.h> | |
| /* signed types */ | |
| typedef int8_t i8; |