inital commit

This commit is contained in:
uvos 2023-06-28 23:59:50 +02:00
commit 438c9d726c
19 changed files with 2169 additions and 0 deletions

7
tokenize.h Normal file
View file

@ -0,0 +1,7 @@
#pragma once
#include <string>
#include <vector>
std::vector<std::string> tokenizeBinaryIgnore(const std::string& str, const char delim, const char ignoreBraket = '\0',
const char escapeChar = '\0');