aboutsummaryrefslogtreecommitdiff
path: root/include/hex_functions.h
blob: d178ba1b90fc6ad1e895a31ed3241ccc422f1fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef HEX_OPERATIONS_H
#define HEX_OPERATIONS_H

#include <algorithm>
#include <bitset>
#include <cstdint>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <string>

namespace omni {
std::string int_to_hex(unsigned int input);
}

#endif // HEX_OPERATIONS_H