chessmcu/inc/strFuncs.hpp

20 lines
385 B
C++

/*
* File: strFuncs.hpp
* Author: amr
*
* Created on August 27, 2025, 12:58 PM
*/
#ifndef STRFUNCS_HPP
#define STRFUNCS_HPP
#include <iterator>
#include <sstream>
#include <string>
#include <vector>
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 */