mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
20 lines
492 B
C
20 lines
492 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#include "terminal.h"
|
|
|
|
void vt_from_slave(struct terminal *term, const uint8_t *data, size_t len);
|
|
bool vt_to_slave(struct terminal *term, const void *data, size_t len);
|
|
|
|
static inline int
|
|
vt_param_get(const struct terminal *term, size_t idx, int default_value)
|
|
{
|
|
if (term->vt.params.idx > idx) {
|
|
int value = term->vt.params.v[idx].value;
|
|
return value != 0 ? value : default_value;
|
|
}
|
|
|
|
return default_value;
|
|
}
|