I am new to Python. I have written a C code extending Python to get certain values from another C module. The values are got as C Structures. I need to return C structure to Python. For this I think, copying C structure to Python list would be good.
I have a structure like:
struct cStruct{
int a;
char* b;
struct c;
}cStruct_t;
How to return cStruct_t to Python???
Regards, solz