mirror of
https://github.com/WhatCD/Ocelot.git
synced 2026-01-16 19:05:03 -05:00
12 lines
288 B
C++
12 lines
288 B
C++
#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
|