grid: grid_memset() -> grid_memclear()

This commit is contained in:
Daniel Eklöf 2019-07-07 17:10:15 +02:00
parent abff0e205e
commit 48528419c4
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 7 additions and 8 deletions

2
grid.h
View file

@ -4,5 +4,5 @@
#include "terminal.h"
struct cell *grid_get_range(struct grid *grid, int start, int *length);
void grid_memset(struct grid *grid, int start, int c, int length);
void grid_memclear(struct grid *grid, int start, int length);
void grid_memmove(struct grid *grid, int dst, int src, int length);