mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-11 08:21:01 -04:00
osc8: uri ranges: use a dynamically re-sizable array instead of a tllist
This commit is contained in:
parent
b1043a72f8
commit
ccee08a393
4 changed files with 319 additions and 123 deletions
|
|
@ -102,7 +102,11 @@ struct row_uri_range {
|
|||
};
|
||||
|
||||
struct row_data {
|
||||
tll(struct row_uri_range) uri_ranges;
|
||||
struct {
|
||||
struct row_uri_range *v;
|
||||
uint32_t size;
|
||||
uint32_t count;
|
||||
} uri_ranges;
|
||||
};
|
||||
|
||||
struct row {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue