modified itoa and its headers

This commit is contained in:
hugogogo
2022-07-31 12:59:27 +02:00
parent 2a69e14db2
commit cbb1d12d54
6 changed files with 26 additions and 60 deletions

View File

@@ -1,10 +1,13 @@
#ifndef UTILS_HPP
# define UTILS_HPP
# include <string>
# include <sstream>
# include <vector>
std::vector<std::string> split(std::string input, char delimiter);
std::vector<std::string> split(std::string input, char delimiter);
char* itoa(int n);
#endif