LibC: make printf buffer only 128 bytes
Only reason for it to be big is if you want super large zero padding for your number. This will eventually be handled without the buffer.
This commit is contained in:
@@ -308,7 +308,7 @@ extern "C" int printf_impl(const char* format, va_list arguments, int (*putc_fun
|
|||||||
|
|
||||||
// TODO: Lenght modifier
|
// TODO: Lenght modifier
|
||||||
|
|
||||||
char conversion[1024];
|
char conversion[128];
|
||||||
const char* string = nullptr;
|
const char* string = nullptr;
|
||||||
|
|
||||||
int length = -1;
|
int length = -1;
|
||||||
|
|||||||
Reference in New Issue
Block a user