* Packs two 4-bit nibbles into one byte. This is used to pack the special * codes returned by pack() in the compressed log. */
| 72 | * codes returned by pack() in the compressed log. |
| 73 | */ |
| 74 | struct TwoNibbles { |
| 75 | uint8_t first:4; |
| 76 | uint8_t second:4; |
| 77 | } __attribute__((packed)); |
| 78 | |
| 79 | /** |
| 80 | * Given an unsigned integer and a char array, find the fewest number of |
nothing calls this directly
no outgoing calls
no test coverage detected