I am trying to make a c style array of chars pointer like this:
*const argv[]
I figured out i have to use UnsafePointer<UnsafeMutablePointer<Int8>>
but i don't know how to initialize it.
How can i map this normal Array to UnsafePointer<UnsafeMutablePointer<Int8>>
:
let argv = ["/usr/bin/printf", "BBB"]
Thank you