| 77 | return nibble < 10 ? '0' + nibble : 'A' + nibble - 10; |
| 78 | } |
| 79 | static void hex_byte(char **dest, uint8_t byte) { |
| 80 | *(*dest)++ = hex_char(byte >> 4); |
| 81 | *(*dest)++ = hex_char(byte >> 0); |
| 82 | } |
| 83 | |
| 84 | const char *calc_var_name_to_utf8(const uint8_t name[8], uint8_t namelen, bool named) { |
| 85 | static char buffer[26]; |
no test coverage detected