Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #define Employee_LIMIT 20 | |
| // enum { Employee_LIMIT_MAX = 20 }; | |
| typedef struct { |
Suppose you have weird taste and you absolutely want: