Skip to content

jmcph4/tinyscstr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.