Skip to main content

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.

See Also

Was this page helpful?