23 lines
387 B
C++
23 lines
387 B
C++
/*
|
|
* File: strFuncs.hpp
|
|
* Author: amr
|
|
*
|
|
* Created on August 27, 2025, 12:58 PM
|
|
*/
|
|
|
|
#ifndef STRFUNCS_HPP
|
|
#define STRFUNCS_HPP
|
|
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <vector>
|
|
#include <iterator>
|
|
|
|
template <typename Out>
|
|
void split(const std::string &s, char delim, Out result);
|
|
|
|
std::vector<std::string> split(const std::string &s, char delim);
|
|
|
|
|
|
#endif /* STRFUNCS_HPP */
|
|
|