#pragma once #include constexpr unsigned int NUMBER_BASE = 10U; /** * 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);