Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| #ifndef __cplusplus | |
| # define decltype typeof | |
| # include <stdbool.h> | |
| #endif | |
| #include <assert.h> | |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #define TOKEN_CONCAT_EX(x, y) x##y | |
| #define TOKEN_CONCAT(x, y) TOKEN_CONCAT_EX(x, y) |
| #!/bin/bash | |
| # Install reflector | |
| sudo pacman -S reflector | |
| # Update mirrorlist | |
| reflector | sudo tee /etc/pacman.d/mirrorlist | |