atrooney-online-2/hex_functions.h
2018-07-05 12:26:15 -05:00

17 lines
289 B
C++

#ifndef HEX_OPERATIONS_H
#define HEX_OPERATIONS_H
#include <bitset>
#include <cstdint>
#include <iostream>
#include <algorithm>
#include <string>
namespace omni
{
char halfword_to_hex_char(unsigned int input);
std::string int_to_hex(unsigned int input);
}
#endif //HEX_OPERATIONS_H