Searched refs:hextobin (Results 1 – 3 of 3) sorted by relevance
93 hextobin (unsigned char c) in hextobin() function225 c = hextobin (ch); in main()230 c = c * 16 + hextobin (ch); in main()
70 #define hextobin(c) ((c) >= 'a' && (c) <= 'f' ? (c) - 'a' + 10 : \ macro267 esc_value = esc_value * 16 + hextobin (*p); in print_esc()297 uni_value = uni_value * 16 + hextobin (*p); in print_esc()
172 #define hextobin(c) ((c) >= 'a' && (c) <= 'f' ? (c) - 'a' + 10 : \ macro1220 int esc_value = hextobin (b[1]); /* Value of \xhh escape. */ in print_it()1227 esc_value = esc_value * 16 + hextobin (*b); in print_it()