mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 01:15:55 +02:00
40 lines
827 B
C
40 lines
827 B
C
#ifndef ID_H
|
|
#define ID_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
struct id;
|
|
|
|
/*
|
|
* @@@ basic binary trees are not a good choice. should use rb.
|
|
* To ease future migration, we separate the node structure from the rest.
|
|
*/
|
|
|
|
struct node {
|
|
struct node *up, *left, *right;
|
|
};
|
|
|
|
struct tree {
|
|
int (*comp)(const struct id *a, const struct id *b);
|
|
struct node *root;
|
|
};
|
|
|
|
struct id {
|
|
struct node node;
|
|
const char *s;
|
|
size_t len;
|
|
void *value;
|
|
};
|
|
|
|
|
|
int comp_id(const struct id *a, const struct id *b);
|
|
|
|
struct tree *make_tree(int (*comp)(const struct id *a, const struct id *b));
|
|
struct id *make_id(struct tree *tree, const char *s, size_t len);
|
|
const struct id *find_id(const struct tree *tree, const char *s, size_t len);
|
|
const struct id *first_id(const struct tree *tree);
|
|
const struct id *next_id(const struct id *id);
|
|
|
|
#endif /* !ID_H */
|