write unit tests for resplit, fix some issues with resplit

This commit is contained in:
ado
2021-01-30 21:52:32 +01:00
parent a5c9216824
commit 1bf6b9d595
3 changed files with 129 additions and 12 deletions

View File

@@ -17,6 +17,11 @@ public:
strcpy(data_, data);
return data_;
}
char* append(const char* data) {
strcat(data_, data);
return data_;
}
};
[[maybe_unused]] inline buffer buff;