print helpers */
| 247 | |
| 248 | /* print helpers */ |
| 249 | static void print(const char *format, ...) |
| 250 | { |
| 251 | va_list args; |
| 252 | fprintf(stdout, "VBTTOOL: "); |
| 253 | va_start(args, format); |
| 254 | vfprintf(stdout, format, args); |
| 255 | va_end(args); |
| 256 | } |
| 257 | |
| 258 | static void printt(const char *format, ...) |
| 259 | { |
no test coverage detected