mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-23 01:40:12 -05:00
wip: initial input handling
This commit is contained in:
parent
3bd77bceb1
commit
71dde121e6
9 changed files with 484 additions and 51 deletions
2
grid.h
2
grid.h
|
|
@ -7,6 +7,8 @@ void grid_erase(struct grid *grid, int start, int end);
|
|||
void grid_cursor_to(struct grid *grid, int row, int col);
|
||||
void grid_cursor_left(struct grid *grid, int count);
|
||||
void grid_cursor_right(struct grid *grid, int count);
|
||||
void grid_cursor_up(struct grid *grid, int count);
|
||||
void grid_cursor_down(struct grid *grid, int count);
|
||||
|
||||
int grid_cursor_linear(const struct grid *grid, int row, int col);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue