19 lines
264 B
C
19 lines
264 B
C
|
|
#include <wchar.h>
|
|
|
|
extern struct colors {
|
|
const wchar_t* precedences[20];
|
|
|
|
const wchar_t* numeric;
|
|
|
|
const wchar_t* variable;
|
|
|
|
const wchar_t* string;
|
|
|
|
const wchar_t* builtin;
|
|
|
|
const wchar_t* reset;
|
|
} terminalcolors;
|
|
|
|
|
|
|