| 131 | } |
| 132 | |
| 133 | void nfprintf(FILE *file, char *format, ...) { |
| 134 | va_list args; |
| 135 | |
| 136 | va_start(args, format); |
| 137 | if (flag_monitor || flag_monitor_continuous) |
| 138 | vw_printw(mainwin, format, args); |
| 139 | else |
| 140 | vfprintf(file, format, args); |
| 141 | va_end(args); |
| 142 | } |
| 143 | |
| 144 | void nperror(const char *s) { |
| 145 | if (flag_monitor || flag_monitor_continuous) |
no outgoing calls
no test coverage detected