mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-17 13:23:14 +01:00
9 lines
151 B
D
9 lines
151 B
D
char* toStringz (char[] s)
|
|
{
|
|
if (s.ptr)
|
|
if (! (s.length && s[$-1] is 0))
|
|
s = s ~ '\0';
|
|
return s.ptr;
|
|
}
|
|
|