I would like to have an array of variable length arrays in ctypes. I know the size of the outer array and all of the inner arrays, too.
I found an interesting thread here: How do I emulate a dynamically sized C structure in Python using ctypes
But the problem with this is how to create an array of Var classes (see the comment How do I emulate a dynamically sized C structure in Python using ctypes )
Maybe it's something that i cannot do with ctypes at all, i don't really know, i'm getting to know the module only for some hours, any pointers are appreciated.
Thank you!