CS计算机代考程序代写 /* verbose.c – Implement a logging function for debugging */

/* verbose.c – Implement a logging function for debugging */

#include
#include
#include
#include

#include “armemu.h”

bool g_verbose = false;

void verbose(char *fmt, …) {
if (g_verbose) {
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
}
}