MCPcopy Create free account
hub / github.com/coreboot/coreboot / wclear

Function wclear

payloads/libpayload/curses/tinycurses.c:629–635  ·  view source on GitHub ↗

int wchgat (WINDOW *, int, attr_t, short, const void *) {} D */

Source from the content-addressed store, hash-verified

627
628// int wchgat (WINDOW *, int, attr_t, short, const void *) {}
629/* D */ int wclear(WINDOW *win)
630{
631 if (werase(win) == ERR)
632 return ERR;
633 win->_clear = TRUE;
634 return OK;
635}
636// int wclrtobot (WINDOW *) {}
637int wclrtoeol(WINDOW *win) { /* TODO */ return ERR; }
638int wcolor_set(WINDOW *win, short color_pair_number, void *opts)

Callers 2

redraw_moduleFunction · 0.50
render_formFunction · 0.50

Calls 1

weraseFunction · 0.70

Tested by

no test coverage detected