This struct is defined as follows:
typedef struct rsplaynode rsplaynode; struct rsplaynode { void *data; rsplaynode *parent; rsplaynode *left; rsplaynode *right; rsplaynode *prev; rsplaynode *next; };
To use this struct, include the file rsplay.h
.
Was this page helpful?