Skip to content

Instantly share code, notes, and snippets.

@davepacheco
davepacheco / ANSI.md
Created August 11, 2021 22:01 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1b
  • Decimal: 27
@davepacheco
davepacheco / goto.c
Last active December 11, 2015 02:39 — forked from gcmurphy/goto.c
void example()
{
A *a;
B *b = NULL;
a = a_new();
if (! a){
goto end;
}