This commit is contained in:
2025-07-12 12:17:44 +03:00
parent c759f60ff7
commit 792e1b937a
3507 changed files with 492613 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include "libbench2/bench.h"
void ovtpvt(const char *format, ...)
{
va_list ap;
va_start(ap, format);
if (verbose >= 0)
vfprintf(stdout, format, ap);
va_end(ap);
fflush(stdout);
}
void ovtpvt_err(const char *format, ...)
{
va_list ap;
va_start(ap, format);
if (verbose >= 0) {
fflush(stdout);
vfprintf(stderr, format, ap);
}
va_end(ap);
fflush(stdout);
}