/*
* This file is part of Unicorn Sparkle Basic and is released under
* CC0 1.0 Universal License. See LICENSE.txt file or
* https://creativecommons.org/publicdomain/zero/1.0/ for full license
* text.
*/
#include "parse.h"
#include "vec.h"
#include <stdint.h>
void lines_insert(struct node_tag ***lines, struct node_tag *line);
size_t lines_find_idx(struct node_tag **lines, double linum);
void lines_print(struct node_tag **lines);