-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.c
132 lines (119 loc) · 2.76 KB
/
display.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include <stdio.h>
#include <stdarg.h>
#include <inttypes.h>
#include "display.h"
#include "lexer.h"
void pred(const char* msg, ...){
printf(ANSI_COLOR_RED);
va_list(args);
va_start(args, msg);
vprintf(msg, args);
printf(ANSI_COLOR_RESET);
}
void pblue(const char* msg, ...){
printf(ANSI_COLOR_BLUE);
va_list(args);
va_start(args, msg);
vprintf(msg, args);
printf(ANSI_COLOR_RESET);
}
void pylw(const char* msg, ...){
printf(ANSI_COLOR_YELLOW);
va_list(args);
va_start(args, msg);
vprintf(msg, args);
printf(ANSI_COLOR_RESET);
}
void pgrn(const char* msg, ...){
printf(ANSI_COLOR_GREEN);
va_list(args);
va_start(args, msg);
vprintf(msg, args);
printf(ANSI_COLOR_RESET);
}
void pcyn(const char* msg, ...){
printf(ANSI_COLOR_CYAN);
va_list(args);
va_start(args, msg);
vprintf(msg, args);
printf(ANSI_COLOR_RESET);
}
void pmgn(const char* msg, ...){
printf(ANSI_COLOR_MAGENTA);
va_list(args);
va_start(args, msg);
vprintf(msg, args);
printf(ANSI_COLOR_RESET);
}
#ifdef DEBUG
void dbg2(const char* msg, ...){
#else
void dbg(const char* msg, ...){
#endif
printf(ANSI_FONT_BOLD);
printf(ANSI_COLOR_GREEN "\n[Debug] ");
printf(ANSI_COLOR_RESET);
va_list args;
va_start(args, msg);
vprintf(msg, args);
}
#ifdef DEBUG
void info2(const char* msg, ...){
#else
void info(const char* msg, ...){
#endif
printf(ANSI_FONT_BOLD);
printf(ANSI_COLOR_BLUE "\n[Info] ");
printf(ANSI_COLOR_RESET);
va_list args;
va_start(args, msg);
vprintf(msg, args);
}
#ifdef DEBUG
void err2(const char* msg, ...){
#else
void err(const char* msg, ...){
#endif
printf(ANSI_FONT_BOLD);
printf(ANSI_COLOR_RED "\n[Error] ");
printf(ANSI_COLOR_RESET);
va_list args;
va_start(args, msg);
vprintf(msg,args);
}
#ifdef DEBUG
void warn2(const char* msg, ...){
#else
void warn(const char* msg, ...){
#endif
printf(ANSI_FONT_BOLD);
printf(ANSI_COLOR_YELLOW "\n[Warning] ");
printf(ANSI_COLOR_RESET);
va_list args;
va_start(args, msg);
vprintf(msg, args);
}
void lnerr(const char* msg, Token t, ...){
printf(ANSI_FONT_BOLD);
printf(ANSI_COLOR_RED "\n[Error] <line %zd> ", t.line);
printf(ANSI_COLOR_RESET);
va_list args;
va_start(args, t);
vprintf(msg, args);
}
void lnwarn(const char* msg, Token t, ...){
printf(ANSI_FONT_BOLD);
printf(ANSI_COLOR_YELLOW "\n[Warning] <line %zd> ", t.line);
printf(ANSI_COLOR_RESET);
va_list args;
va_start(args, t);
vprintf(msg, args);
}
void lninfo(const char* msg, Token t, ...){
printf(ANSI_FONT_BOLD);
printf(ANSI_COLOR_BLUE "\n[Info] <line %zd> ", t.line);
printf(ANSI_COLOR_RESET);
va_list args;
va_start(args, t);
vprintf(msg, args);
}