Fixed the includes

This commit is contained in:
Me
2022-07-31 16:53:22 +02:00
parent d4a001e8ba
commit 19f7493aac
8 changed files with 36 additions and 41 deletions

View File

@@ -5,10 +5,11 @@
# include <vector>
# include <string>
# include <sstream>
# include <cstdlib> // atoi (athough it's already cover by <string>)
std::vector<std::string> split(std::string input, char delimiter);
bool isNumeric(std::string str);
bool isNumeric_btw(int low, int high, std::string str);
char* itoa(int n);
std::vector<std::string> split(std::string input, char delimiter);
bool isNumeric(std::string str);
bool isNumeric_btw(int low, int high, std::string str);
char* itoa(int n);
#endif