kout
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user