blob: ccd8fbd4657eb12875e55aec5c1690aa57b45e2c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _UTILS_H_
#define _UTILS_H_
#define PRINT_ERROR(fmt, ...) fprintf(stderr, "\033[0;31mERROR:\033[0m " fmt "\n", ##__VA_ARGS__)
#define PRINT_WARNING(fmt, ...) fprintf(stderr, "\033[0;35mWARNING:\033[0m " fmt "\n", ##__VA_ARGS__)
#define PRINT_INFO(cond, fmt, ...) if(cond) printf("\033[0;32mINFO:\033[0m " fmt "\n", ##__VA_ARGS__);
#define PRINT(fmt, ...) printf(fmt "\n", ##__VA_ARGS__)
#endif
|