#ifndef UTILS_HPP #define UTILS_HPP #include #include /** * Converts a string to a unsigned integer. * * @param str A string that possibly is a unsigned integer * @returns A unsigned integer */ unsigned int str_to_uint(std::string str); #endif