Files
42_INT_12_webserv/srcs/utils.hpp

13 lines
206 B
C++

#ifndef UTILS_HPP
# define UTILS_HPP
std::vector<std::string> split(std::string input, char delimiter);
bool isNumeric(std::string str);
bool isNumeric_btw(int low, int high, std::string str);
#endif