Hi there
I have a C function that generates a [*c][*c]const u8 list of C strings
(aka char const**)
I was thinking that maybe ArrayList([]const u8) would possibly be the best Zig type to hold that list, but I don't know how to convert from/to that type
I was thinking that maybe looping is the only way to do that? But that sounds wrong-ish to me
Any ideas or tips on how to achieve the conversion? I'm super lost