Hello,
this type of structures are confusing. I hav been working with C for a while but this subtlety is yet unknown.
I have come accross such a structure in a program where suposedly it will be used for FIFO management:
typedef struct FIFO_TAG{
struct FIFO_TAG *NextElement;
}FIFO;
And then FIFO would be used.
The thing is that I am trying to make equivalents of structures into Python objects and recover the structure parameters into object attributes, but I need to understand this structure's functionalities in order to do that at best, and I can't so far....not well enough anyway..
Could anyone please explain to me how the inside parameter gets its value and how this structure could be used?It is used in some functions with pointers for FIFO behavior, but if I can intuitively undertand those, I can't see how C interprets such an architecture...
thanks in advance,
T