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

Function printw

payloads/libpayload/curses/tinycurses.c:435–445  ·  view source on GitHub ↗

int overlay (const WINDOW*,WINDOW *) {} int overwrite (const WINDOW*,WINDOW *) {} int pair_content (short,short*,short*) {} int pechochar (WINDOW *, const chtype) {} int pnoutrefresh (WINDOW*,int,int,int,int,int,int) {} int prefresh (WINDOW *,int,int,int,int,int,int) {}

Source from the content-addressed store, hash-verified

433// int pnoutrefresh (WINDOW*,int,int,int,int,int,int) {}
434// int prefresh (WINDOW *,int,int,int,int,int,int) {}
435int printw(const char *fmt, ...)
436{
437 va_list argp;
438 int code;
439
440 va_start(argp, fmt);
441 code = vwprintw(stdscr, fmt, argp);
442 va_end(argp);
443
444 return code;
445}
446// int putwin (WINDOW *, FILE *) {}
447// void qiflush (void) {}
448// int raw (void) {}

Callers

nothing calls this directly

Calls 1

vwprintwFunction · 0.70

Tested by

no test coverage detected