I'm trying to model a struct found in a library I'm wrapping, where the struct has a pointer-to-a-pointer like this:
typedef struct item_t {
char* name;
}
typedef struct container_t {
item_t **items;
}
How, when modeling with Python's ctypes module's Structure class, would I represent an array of pointers with a variable length?