Skip to content

Commit 230789b

Browse files
committed
Utilitaires -> .h
1 parent 91d2dbe commit 230789b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

headers/Utils.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#pragma once
2+
3+
#include <iostream>
4+
#include <string>
5+
#include <vector>
6+
#include <sstream>
7+
#include <algorithm>
8+
#include <iterator>
9+
10+
std::vector<std::string> split(std::string& arg);
11+
12+
std::vector<char> splitChar(std::string& arg);
13+
14+
std::string replaceFPL(std::string& line, std::string& what);

0 commit comments

Comments
 (0)