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