Wireshark  4.3.0
The Wireshark network protocol analyzer
sttype-op.h
Go to the documentation of this file.
1 
11 #ifndef STTYPE_TEST_H
12 #define STTYPE_TEST_H
13 
14 #include "syntax-tree.h"
15 
16 void
17 sttype_oper_set1(stnode_t *node, stnode_op_t op, stnode_t *val1);
18 
19 void
20 sttype_oper_set2(stnode_t *node, stnode_op_t op, stnode_t *val1, stnode_t *val2);
21 
22 void
23 sttype_oper_set1_args(stnode_t *node, stnode_t *val1);
24 
25 void
26 sttype_oper_set2_args(stnode_t *node, stnode_t *val1, stnode_t *val2);
27 
28 void
29 sttype_oper_set_op(stnode_t *node, stnode_op_t op);
30 
31 stnode_op_t
32 sttype_oper_get_op(stnode_t *node);
33 
34 void
35 sttype_oper_get(stnode_t *node, stnode_op_t *p_op, stnode_t **p_val1, stnode_t **p_val2);
36 
37 void
38 sttype_test_set_match(stnode_t *node, stmatch_t how);
39 
40 stmatch_t
41 sttype_test_get_match(stnode_t *node);
42 
43 #endif
Definition: syntax-tree.h:75