atrooney-online-2/hex_functions.h
2017-01-05 22:17:36 +01:00

15 lines
250 B
C++

#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