blob: 151e1d0bf486fa386ff253d72244ce078ec1d9c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef UTILS_H
#define UTILS_H
#include <string>
std::string to_string_hex(int);
std::string to_string_hex(unsigned);
std::string to_string_hex(long);
std::string to_string_hex(unsigned long);
std::string to_string_hex(long long);
std::string to_string_hex(unsigned long long);
#endif // UTILS_H
|