summaryrefslogtreecommitdiffstats
path: root/src/misc_functions.h
blob: fbe164dc6618abfd95a65d70b9942ec8a88c7ef6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MISC_FUNCTIONS__H
#define MISC_FUNCTIONS__H
#include <string>

int32_t strtoint32(const std::string& str);
int64_t strtoint64(const std::string& str);
std::string inttostr(int i);
std::string hex_decode(const std::string &in);
std::string bintohex(const std::string &in);

#endif