#include	<stdio.h>
#include	<stdlib.h>
#include	<string.h>

#define		UINT	unsigned int

#define		CON		stdout

#define		C_RED		"\x1b[31m"
#define		C_GREEN		"\x1b[32m"
#define		C_YELLOW	"\x1b[33m"
#define		C_BLUE		"\x1b[34m"
#define		C_PINK		"\x1b[35m"
#define		C_CYAN		"\x1b[36m"
#define		C_WHITE		"\x1b[37m"

#define		C_HRED		"\x1b[31m"
#define		C_HGREEN	"\x1b[32m"
#define		C_HYELLOW	"\x1b[33m"
#define		C_HBLUE		"\x1b[34m"
#define		C_HPINK		"\x1b[35m"
#define		C_HCYAN		"\x1b[36m"
#define		C_HWHITE	"\x1b[37m"

