mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
12 lines
300 B
C
12 lines
300 B
C
|
#ifndef __ANSI_H
|
||
|
#define __ANSI_H
|
||
|
|
||
|
#define _BLUE_(s) "\x1b[34m" s "\x1b[0m "
|
||
|
#define _RED_(s) "\x1b[31m" s "\x1b[0m "
|
||
|
#define _GREEN_(s) "\x1b[32m" s "\x1b[0m "
|
||
|
#define _YELLOW_(s) "\x1b[33m" s "\x1b[0m "
|
||
|
#define _MAGENTA_(s) "\x1b[35m" s "\x1b[0m "
|
||
|
#define _CYAN_(s) "\x1b[36m" s "\x1b[0m "
|
||
|
|
||
|
#endif
|