This commit is contained in:
hugogogo
2022-07-31 12:30:35 +02:00
parent 122032a140
commit 2a69e14db2
9 changed files with 21 additions and 4 deletions

View File

@@ -1,9 +1,6 @@
#include "Webserv.hpp"
std::vector<std::string> split(std::string input, char delimiter)
{
std::vector<std::string> answer;
@@ -16,4 +13,3 @@ std::vector<std::string> split(std::string input, char delimiter)
return answer;
}