void foo(char** k)
{
// body
}
string[] mykeys;
auto ckeys = cast(char**)mykeys.map!toStringz.array;
foo(ckeys);
Bruce
On 04/06/13 20:59, Jacob Carlborg wrote:
On 2013-06-04 12:41, bearophile wrote:An alternative is something like (untested): auto ckeys = mykeys.map!toStringz.array;Right, that should work.
