char, wchar or dchar referencing the same
string. The returned array will retain the same type qualifiers as the input.
ImportantNote
The returned array is a slice of the original buffer.
The original data is not changed and not copied.
inout(Char)[] fromStringz(Char)(return scope inout(Char) * cString) if (isSomeChar!Char) @nogc @system pure nothrowcString | A null-terminated c-style string. |
char, wchar or dchar referencing the same
string. The returned array will retain the same type qualifiers as the input.
ImportantThe original data is not changed and not copied.
inout(Char)[] fromStringz(Char)(return scope inout(Char)[] cString) if (isSomeChar!Char) @nogc @safe pure nothrowditto