gwion-util
utilities for the Gwion project
Loading...
Searching...
No Matches
err_msg.h
Go to the documentation of this file.
1
4#pragma once
5
6#include <stdarg.h>
7#include "termcolor.h"
9#define gw_err(...) tcol_fprintf(stderr, __VA_ARGS__)
11#define gw_out(...) tcol_fprintf(stdout, __VA_ARGS__)
12
13#ifdef __FUZZING__
14#define gw_err(a, ...)
15#define gw_out(a, ...)
16#endif