common.h 477 字节
Newer Older
Z
Zihao Yu 已提交
1 2 3 4 5 6
#ifndef __COMMON_H
#define __COMMON_H

#include <cstdio>
#include <cstring>
#include <cstdlib>
7 8
#include <stdint.h>
#include <assert.h>
Z
Zihao Yu 已提交
9 10 11 12 13 14 15 16 17

#define ANSI_COLOR_RED     "\x1b[31m"
#define ANSI_COLOR_GREEN   "\x1b[32m"
#define ANSI_COLOR_YELLOW  "\x1b[33m"
#define ANSI_COLOR_BLUE    "\x1b[34m"
#define ANSI_COLOR_MAGENTA "\x1b[35m"
#define ANSI_COLOR_CYAN    "\x1b[36m"
#define ANSI_COLOR_RESET   "\x1b[0m"

Z
Zihao Yu 已提交
18
#define eprintf(...) fprintf(stdout, ## __VA_ARGS__)
Z
Zihao Yu 已提交
19 20

#endif // __COMMON_H