Age | Commit message (Collapse) | Author |
|
This commit also add braces to all `if` statements.
|
|
A lot of code written usually has means of doing allocations in a more
optimal way than having the string builder library doing it itself.
For example a temporary buffer can be allocated on the stack and the
string builder functions can then make use of this buffer without ever
having to run malloc/free(which would be expensive)
|
|
|
|
|
|
It can now compile with almost all compiler warnings turned on without
producing any warnings.
|
|
|