summaryrefslogtreecommitdiff
path: root/userland/libc/tb/sb.c
AgeCommit message (Collapse)Author
2024-12-31libc: Add more sv/sb functionsAnton Kling
2024-10-13libc/sb: Refactor string builder to allow for none malloc allocationsAnton Kling
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)
2024-10-06libc: Add sb_prepend_bufferAnton Kling
2024-10-03libc: small changesAnton Kling
2024-04-18LibC: Fix compiler warningsAnton Kling
It can now compile with almost all compiler warnings turned on without producing any warnings.
2024-04-11bug fixesAnton Kling