MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / hex_byte

Function hex_byte

core/vat.c:79–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

calc_var_name_to_utf8Function · 0.85

Calls 1

hex_charFunction · 0.85

Tested by

no test coverage detected