C-Menu 0.2.9
A User Interface Toolkit
Loading...
Searching...
No Matches
putnccells.c
Go to the documentation of this file.
1#include <notcurses/notcurses.h>
2
3int write_cell_array(struct ncplane *n, int starty, int startx, const nccell *cells, int count) {
4 for (int i = 0; i < count; i++) {
5 if (ncplane_putc_yx(n, starty, startx + i, &cells[i]) < 0) {
6 return -1;
7 }
8 }
9 return 0;
10}
int write_cell_array(struct ncplane *n, int starty, int startx, const nccell *cells, int count)
Definition putnccells.c:3