vt: add vt_param_get() - returns the specified parameter's value

This commit is contained in:
Daniel Eklöf 2019-07-10 16:03:18 +02:00
parent 3ab68c575b
commit 9df691e1af
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

11
vt.h
View file

@ -6,3 +6,14 @@
#include "terminal.h"
void vt_from_slave(struct terminal *term, const uint8_t *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;
}