- added MultiBuffer

- improved tests
This commit is contained in:
2025-10-27 21:48:51 +01:00
parent 9fedd040b3
commit 7f66f9e60d
7 changed files with 153 additions and 19 deletions
+10
View File
@@ -0,0 +1,10 @@
extern void test_buffer();
extern void test_buffer_multi();
int main()
{
test_buffer();
test_buffer_multi();
return 0;
}