wip: vt parsing: initial csi/osc dispatching

This commit is contained in:
Daniel Eklöf 2019-06-15 22:22:44 +02:00
parent 0e6aa61d69
commit 2a4c08b941
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
10 changed files with 571 additions and 103 deletions

6
csi.h Normal file
View file

@ -0,0 +1,6 @@
#pragma once
#include <stdbool.h>
#include "terminal.h"
bool csi_dispatch(struct terminal *term, uint8_t final);