This commit is contained in:
Eggert Jung
2025-04-23 01:31:43 +02:00
parent 5ae907ca5a
commit 91d7affc23
7 changed files with 49 additions and 24 deletions

View File

@@ -1,3 +1,7 @@
#include "stringbuffer.h"
void Stringbuffer::put(char c) { (void)c; }
void Stringbuffer::put(char c) {
buffer[pos++] = c;
if(pos > 80)
flush();
}