mirror of
https://github.com/sigmasternchen/libargo
synced 2025-03-15 13:18:55 +00:00
10 lines
226 B
C
10 lines
226 B
C
#ifndef HELPER_H
|
|
#define HELPER_H
|
|
|
|
void _panic(const char* f, const char* s);
|
|
#define panic(s) _panic(__func__, s)
|
|
|
|
#define WARN(msg) ("\033[33mwarning:\033[0m " msg)
|
|
#define ERROR(msg) ("\033[31mwerror:\033[0m " msg)
|
|
|
|
#endif
|