fogleman/Craft

client.c: use static for "char buffer[1024];"

ihor-tarasov opened this issue · 1 comments

May be it's better to use static keyword for char buffer[1024]; to avoid allocations of 1024 bytes of stack memory every call of functions?

Or it can be bad for multithreading?