Files
TCPSocketClient/include/TCPSocket/TCPUtils.hpp
2024-03-28 08:40:46 +01:00

14 lines
370 B
C++

#pragma once
#include <vector>
#include <string>
namespace TCPSocket
{
bool startWith(const std::string& str, const std::string& start);
bool endsWith(const std::string& str, const std::string& end);
bool contains(const std::string& str, const std::string& sub);
std::vector<std::string> split(const std::string& str, const std::string& delimiter);
}