mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
8 lines
264 B
C
8 lines
264 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
#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_memmove(struct grid *grid, int dst, int src, int length);
|