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

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

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

#endif //HEX_OPERATIONS_H