atrooney-online-2/hex_functions.h
Cerapter e6eace9a39 Better INT to HEX conversion.
Reimplementation of `4e96a41b4ee6bbc920b7c5a5ec555d6d14e65b18`,
`bb0b767ba40d189b97ffe371ab063c5380609b0c` and
`e36dae20b7d1baba912c55ec55b82a380c4973da` from old origin.
2018-08-19 09:20:16 +02:00

19 lines
329 B
C++

#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