1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

s3: TREE_NODE -> struct tree_node

This commit is contained in:
Volker Lendecke
2010-02-07 15:42:26 +01:00
parent 65b26ba985
commit ceebed6ce1
2 changed files with 23 additions and 17 deletions

View File

@ -22,16 +22,16 @@
/* data structure used to build the tree */
typedef struct _tree_node {
struct _tree_node *parent;
struct _tree_node **children;
struct tree_node {
struct tree_node *parent;
struct tree_node **children;
int num_children;
char *key;
void *data_p;
} TREE_NODE;
};
typedef struct _tree_root {
TREE_NODE *root;
struct tree_node *root;
/* not used currently (is it needed?) */
int (*compare)(void* x, void *y);