mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-17 05:33:52 -04:00
term_erase(): replace coord-typed arguments with regular ints
This commit is contained in:
parent
366da7349c
commit
39bb6be8bf
3 changed files with 52 additions and 49 deletions
|
|
@ -713,7 +713,9 @@ void term_damage_scroll(
|
|||
struct scroll_region region, int lines);
|
||||
|
||||
void term_erase(
|
||||
struct terminal *term, const struct coord *start, const struct coord *end);
|
||||
struct terminal *term,
|
||||
int start_row, int start_col,
|
||||
int end_row, int end_col);
|
||||
void term_erase_scrollback(struct terminal *term);
|
||||
|
||||
int term_row_rel_to_abs(const struct terminal *term, int row);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue