Craig Lanning <lanning(a)scra.org> writes:
William M. Perry writes:
> Is there any magic utility function that I'm missing to convert a list of
> strings into a char **array with a length, or anything like that?
In lisp you could use coerce, e.g.
(coerce '("foo" "bar" "baz") 'array) =>
["foo" "bar" "baz"]
That's of little use to William, as he needs a `char **' array, not a
Lisp vector.