scheduler http tests

This commit is contained in:
proddy
2024-07-20 13:22:01 +02:00
parent 353e1f4460
commit 809c5c7ead
4 changed files with 65 additions and 6 deletions

View File

@@ -53,6 +53,14 @@ class String {
return 1;
}
int len() const {
return _str.size();
}
bool startsWith(const char * prefix) const {
return _str.find(prefix) == 0;
}
private:
std::string _str;
};