term: replace term_put_char() with term_fill()

This commit is contained in:
Daniel Eklöf 2021-12-26 15:59:38 +01:00
parent 1b66c6a3ac
commit 189cfd717f
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 22 additions and 23 deletions

View file

@ -797,8 +797,8 @@ void term_cursor_up(struct terminal *term, int count);
void term_cursor_down(struct terminal *term, int count);
void term_cursor_blink_update(struct terminal *term);
void term_put_char(struct terminal *term, int r, int c, char32_t wc);
void term_print(struct terminal *term, char32_t wc, int width);
void term_fill(struct terminal *term, int row, int col, char c, size_t count);
void term_scroll(struct terminal *term, int rows);
void term_scroll_reverse(struct terminal *term, int rows);