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:
@ -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);
|
||||
|
Reference in New Issue
Block a user