I would like convert an array in D of the form:
string[] arrayStr = [ "hi, "is fun", "use D programming" ];
I have a C function which takes a C variadic:
void c_func( const char* format, ... );
I could do:
foreach(str; arrayStr)
func( str );
But this seems like hacking the C variadic and I would rather convert directly to C vararg,
How can I do this?
thanks