diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-01-31 17:44:22 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-01-31 17:44:22 +0000 |
commit | 9a4037d40891321a2f091cb1f1003bb1ee725136 (patch) | |
tree | 7ddba4047d6d2ae106994787e3aaff8ef91f423f /filter/filter.h | |
parent | 70844a6a46305080d7ada79936fb272beb411cf4 (diff) |
filter_same() implemented. Don't bet on it, yet.
Diffstat (limited to 'filter/filter.h')
-rw-r--r-- | filter/filter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/filter/filter.h b/filter/filter.h index 2fe66539..ace72e47 100644 --- a/filter/filter.h +++ b/filter/filter.h @@ -61,6 +61,7 @@ struct f_tree *f_new_tree(void); struct f_tree *build_tree(struct f_tree *); struct f_tree *find_tree(struct f_tree *t, struct f_val val); +int same_tree(struct f_tree *t1, struct f_tree *t2); struct ea_list; struct rte; @@ -69,6 +70,8 @@ int f_run(struct filter *filter, struct rte **rte, struct ea_list **tmp_attrs, s char *filter_name(struct filter *filter); int filter_same(struct filter *new, struct filter *old); +int i_same(struct f_inst *f1, struct f_inst *f2); + int val_compare(struct f_val v1, struct f_val v2); void val_print(struct f_val v); |