merge from hugo, add parsing requests and wip cgi

This commit is contained in:
hugogogo
2022-08-01 20:41:07 +02:00
parent 16af16084b
commit f252887d53
28 changed files with 971 additions and 71 deletions

View File

@@ -5,11 +5,12 @@
# include <vector>
# include <string>
# include <sstream>
# include <cstdlib> // atoi (athough it's already cover by <string>)
# include <cstdlib> // atoi
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::string itos(int n);
std::string trim(std::string str, char c);
#endif