#ifndef UTILS_HPP # define UTILS_HPP # include # include # include # include // atoi (athough it's already cover by ) std::vector split(std::string input, char delimiter); bool isNumeric(std::string str); bool isNumeric_btw(int low, int high, std::string str); char* itoa(int n); #endif