foot/extract.h

17 lines
375 B
C

#pragma once
#include <stddef.h>
#include <stdbool.h>
#include "terminal.h"
struct extraction_context;
struct extraction_context *extract_begin(enum selection_kind kind);
bool extract_one(
struct terminal *term, struct row *row, struct cell *cell, int col,
void *context);
bool extract_finish(
struct extraction_context *context, char **text, size_t *len);