/* * File: strFuncs.hpp * Author: amr * * Created on August 27, 2025, 12:58 PM */ #ifndef STRFUNCS_HPP #define STRFUNCS_HPP #include #include #include #include template void split(const std::string &s, char delim, Out result); std::vector split(const std::string &s, char delim); #endif /* STRFUNCS_HPP */