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

Function wprintw

payloads/libpayload/curses/tinycurses.c:878–888  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

876 return OK;
877}
878int wprintw(WINDOW *win, const char *fmt, ...)
879{
880 va_list argp;
881 int code;
882
883 va_start(argp, fmt);
884 code = vwprintw(win, fmt, argp);
885 va_end(argp);
886
887 return code;
888}
889
890int wredrawln (WINDOW *win, int beg_line, int num_lines)
891{

Callers 6

decode_flagsFunction · 0.50
get_featuresFunction · 0.50
coreboot_module_redrawFunction · 0.50
multiboot_module_redrawFunction · 0.50
print_positionFunction · 0.50
print_itemFunction · 0.50

Calls 1

vwprintwFunction · 0.70

Tested by

no test coverage detected