String library, very low memory overhead, simple to import
Description
This package provides a low overhead string library for C, it is been designed to
make integrating a string library into any C project easy. The default overhead
over using plain strdup("a") is 4 used bytes (on i386 or x86-64), and for this
you get reference counted length managed strings. This overhead grows to 5 used
bytes for 256 byte strings, and 7 bytes for 65,536 character strings.
This package also distributes pre-built shared libraries.