Comment by secondcoming
1 day ago
But won't all those posix functions that take only `const char*` parameters need to be changed to be pointer/length?
1 day ago
But won't all those posix functions that take only `const char*` parameters need to be changed to be pointer/length?
No. For string literals, they already have a 0 appended, so no problem. For others, you'll need to malloc/copy/free.
It hasn't been much of an issue with decades of D code.