mirror of
https://github.com/modelec/TCPSocketClient.git
synced 2026-01-18 16:37:35 +01:00
14 lines
370 B
C++
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);
|
|
} |