Process.toNullEndedArray

Convert an array of strings to an array of pointers to char with a terminating null character (C strings). The resulting array has a null pointer at the end. This is the format expected by the execv*() family of POSIX functions.

  1. char*[] toNullEndedArray(cstring[] src)
    class Process
    protected static
    char*[]
    toNullEndedArray
  2. char*[] toNullEndedArray(istring[istring] src)

Meta