> ... Which indirectly states "Hey you can use Nim strings as Cstrings anywhere > you can do char* or char*, SomeInt len in C"
That's great information, thanks. > ... they're nil terminated, but there is no certain way to retrieve length > from a cstringarray Feels like a flaw to me... I can find out the length by iterating the cstrings in the array until I arrive at nil, I feel like this should already be there. On the other hand, I understand that these things are not meant to be used too much in Nim and I hope I can get past it soon. Thanks!