obliteration
obliteration copied to clipboard
Implement a wrapper type for string buffers
In several places where FreeBSD uses [char; N], we currently use String. We could mimic the FreeBSD code more closely while also avoiding heap allocations if we implemented a wrapper type using generics for this, something like ArrayString<N>.
This was previously suggested in #525