Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 337 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 337 Bytes

tinyscstr


The tiny safe C string library. Strings are immutable at this stage (by that I mean concatenation doesn't modify supplied strings).

Basically, we have scstr type which just tracks size (including terminating NUL byte) and contents of the string, with some memory management abstractions on top.