aboutsummaryrefslogtreecommitdiff
path: root/String.c
Commit message (Collapse)AuthorAgeFilesLines
* chore: Add safety checks and clean up code styleSyndamia2026-05-121-7/+7
|
* feat!: Refactor using MemoryManagerSyndamia2026-05-121-129/+106
| | | | | | | | The idea is to provide a universal memory management "API", through which you allocate and deallocate. This allows our implementations (for String and Vector) to be more generic. It does also allow usage of different allocators depending on situation.
* fix: Do not produce side effects on failed resizeSyndamia2026-04-211-5/+8
|
* fix(S_dup): Proper return valueSyndamia2026-04-211-1/+1
|
* fix(String): Handle out of memory conditionSyndamia2026-04-211-2/+14
|
* chore(String): Minor code improvementsSyndamia2026-04-211-2/+2
|
* feat(S_append): Always resize stringSyndamia2026-04-211-6/+4
|
* fix(S_vprintf): vsnprintf length including terminating zeroSyndamia2026-04-211-1/+1
|
* feat!: Function rename and standardizeSyndamia2026-04-211-40/+40
|
* feat!: Initial implementationSyndamia2026-04-211-0/+230