I'm trying to implement a different kind of doubly-linked list. It's made up of 2 different structs that are inter-dependent.




typedef struct {
int value;
Child *child;
} Parent;