Skip to content

strlib v0.1.0 — Initial Release

Pre-release
Pre-release

Choose a tag to compare

@UniquePython UniquePython released this 06 Apr 12:15

The first release of strlib, a small C11 string handling library built around a three-layer ownership model: string views (SV) for zero-cost borrowing, owned heap strings (Str) for safe persistence, and a string builder (SB) for efficient incremental construction.

Requires C11, GCC or Clang. No dependencies beyond libc.

See the README for the full API reference, design philosophy, and known footguns.