2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00
sudo/plugins/sudoers/redblack.h

61 lines
1.8 KiB
C
Raw Permalink Normal View History

2004-11-15 03:52:54 +00:00
/*
2019-04-29 07:21:51 -06:00
* SPDX-License-Identifier: ISC
*
2013-04-24 09:35:02 -04:00
* Copyright (c) 2004, 2007, 2010, 2013
2017-12-03 17:53:40 -07:00
* Todd C. Miller <Todd.Miller@sudo.ws>
2004-11-15 03:52:54 +00:00
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef SUDOERS_REDBLACK_H
#define SUDOERS_REDBLACK_H
2004-11-15 03:52:54 +00:00
enum rbcolor {
red,
black
};
enum rbtraversal {
preorder,
inorder,
postorder
};
struct rbnode {
struct rbnode *left, *right, *parent;
void *data;
2004-11-15 03:52:54 +00:00
enum rbcolor color;
};
struct rbtree {
2010-03-17 19:56:27 -04:00
int (*compar)(const void *, const void *);
2004-11-15 03:52:54 +00:00
struct rbnode root;
struct rbnode nil;
};
#define rbapply(t, f, c, o) rbapply_node((t), (t)->root.left, (f), (c), (o))
#define rbisempty(t) ((t)->root.left == &(t)->nil && (t)->root.right == &(t)->nil)
#define rbfirst(t) ((t)->root.left)
#define rbroot(t) (&(t)->root)
#define rbnil(t) (&(t)->nil)
2010-03-17 19:56:27 -04:00
void *rbdelete(struct rbtree *, struct rbnode *);
int rbapply_node(struct rbtree *, struct rbnode *,
int (*)(void *, void *), void *, enum rbtraversal);
struct rbnode *rbfind(struct rbtree *, void *);
int rbinsert(struct rbtree *, void *, struct rbnode **);
2010-03-17 19:56:27 -04:00
struct rbtree *rbcreate(int (*)(const void *, const void *));
void rbdestroy(struct rbtree *, void (*)(void *));
2004-11-15 03:52:54 +00:00
#endif /* SUDOERS_REDBLACK_H */