blob: 47d9466b7ce64c86ff7416c429d022cbe0466a40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef HEX_OPERATIONS_H
#define HEX_OPERATIONS_H
#include <bitset>
#include <cstdint>
#include <iostream>
namespace omni
{
char halfword_to_hex_char(unsigned int input);
std::string int_to_hex(unsigned int input);
}
#endif //HEX_OPERATIONS_H
|