mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
We now store the passthrough characters in a buffer, and call dcs_passthrough() on unhook. However, dcs_passthrough() doesn't do anything.
7 lines
170 B
C
7 lines
170 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include "terminal.h"
|
|
|
|
void dcs_passthrough(struct terminal *term);
|
|
bool dcs_ensure_size(struct terminal *term, size_t required_size);
|