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