]> git.sesse.net Git - vlc/blob - modules/visualization/galaktos/splaytree_types.h
jvlc: comment fixed
[vlc] / modules / visualization / galaktos / splaytree_types.h
1 #ifndef SPLAYTREE_TYPES_H
2 #define SPLAYTREE_TYPES_H
3
4 typedef struct SPLAYNODE_T {
5   int type;
6   struct SPLAYNODE_T * left, * right;
7   void * data;
8   void * key;
9 } splaynode_t;
10
11 typedef struct SPLAYTREE_T {
12   splaynode_t * root;
13   int (*compare)();
14   void * (*copy_key)();
15   void (*free_key)();
16 } splaytree_t;
17 #endif