mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
8 lines
259 B
C
8 lines
259 B
C
#pragma once
|
|
|
|
#include "terminal.h"
|
|
|
|
void selection_start(struct terminal *term, int col, int row);
|
|
void selection_update(struct terminal *term, int col, int row);
|
|
void selection_finalizie(struct terminal *term);
|
|
void selection_cancel(struct terminal *term);
|