Unify all the hex digits used in the app

This commit is contained in:
Alexandre Paillier
2022-06-07 14:44:01 +02:00
parent f99804de08
commit 10fbb8d5bc
6 changed files with 5 additions and 12 deletions

View File

@@ -19,8 +19,6 @@
#include "uint_common.h"
const char HEXDIGITS[] = "0123456789abcdef";
void write_u64_be(uint8_t *const buffer, uint64_t value) {
buffer[0] = ((value >> 56) & 0xff);
buffer[1] = ((value >> 48) & 0xff);