ft_irc/src/split.hpp
2024-08-27 17:56:32 +02:00

8 lines
186 B
C++

#pragma once
#include <string>
#include <vector>
typedef std::vector<std::string> string_vector;
string_vector split(std::string str, const std::string& sep, bool ignore_empty=false);