MCPcopy Index your code
hub / github.com/Xfennec/progress / nprintf

Function nprintf

progress.c:121–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119}
120
121void nprintf(char *format, ...)
122{
123va_list args;
124
125va_start(args, format);
126if (flag_monitor || flag_monitor_continuous)
127 vw_printw(mainwin, format, args);
128else
129 vprintf(format, args);
130va_end(args);
131}
132
133void nfprintf(FILE *file, char *format, ...) {
134va_list args;

Callers 2

print_etaFunction · 0.85
monitor_processesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected