libargo/marshaller/helper.h

11 lines
226 B
C
Raw Normal View History

#ifndef HELPER_H
#define HELPER_H
void _panic(const char* f, const char* s);
#define panic(s) _panic(__func__, s)
2021-05-04 15:24:58 +00:00
#define WARN(msg) ("\033[33mwarning:\033[0m " msg)
#define ERROR(msg) ("\033[31mwerror:\033[0m " msg)
#endif