#ifndef SRC_UTIL_HPP_
#define SRC_UTIL_HPP_
#include
#include
#include
namespace httpsserver {
uint32_t parseUInt(std::string const &s, uint32_t max = 0xffffffff);
int32_t parseInt(std::string const &s);
std::string intToString(int i);
}
#endif /* SRC_UTIL_HPP_ */