mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
21 lines
540 B
C
21 lines
540 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <wchar.h>
|
|
|
|
#include "terminal.h"
|
|
|
|
struct extraction_context;
|
|
|
|
struct extraction_context *extract_begin(
|
|
enum selection_kind kind, bool strip_trailing_empty);
|
|
|
|
bool extract_one(
|
|
const struct terminal *term, const struct row *row, const struct cell *cell,
|
|
int col, void *context);
|
|
|
|
bool extract_finish(
|
|
struct extraction_context *context, char **text, size_t *len);
|
|
bool extract_finish_wide(
|
|
struct extraction_context *context, wchar_t **text, size_t *len);
|