Convert a series of char[] to C-style 0 terminated strings, using
tmp as a workspace and dst as a place to put the resulting char*'s.
This is handy for efficiently converting multiple strings at once.
Returns a populated slice of dst
Warning, don't read from the memory pointed to in the tmp variable after calling this function.
Convert a series of char[] to C-style 0 terminated strings, using tmp as a workspace and dst as a place to put the resulting char*'s. This is handy for efficiently converting multiple strings at once.
Returns a populated slice of dst
Warning, don't read from the memory pointed to in the tmp variable after calling this function.