fromStringz

Returns a D-style array of char given a zero-terminated C-style string. The returned array will retain the same type qualifiers as the input.

Important Note: The returned array is a slice of the original buffer. The original data is not changed and not copied.

@system pure
static if(__VERSION__ < 2066)
inout(char)[]
fromStringz
(
inout(char)* cString
)

Meta