to_char
#define to_char(n) (CHAR_T)((n) + '0')
#define to_char(n) (char)((n) + '0')
#define to_char(n) ((n) + '0')
to_char(void *ptr)