Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
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#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
20void
21sttype_oper_set1(stnode_t *node, stnode_op_t op, stnode_t *val1);
22
23void
24sttype_oper_set2(stnode_t *node, stnode_op_t op, stnode_t *val1, stnode_t *val2);
25
26void
27sttype_oper_set1_args(stnode_t *node, stnode_t *val1);
28
29void
30sttype_oper_set2_args(stnode_t *node, stnode_t *val1, stnode_t *val2);
31
32void
33sttype_oper_set_op(stnode_t *node, stnode_op_t op);
34
35stnode_op_t
36sttype_oper_get_op(stnode_t *node);
37
38WS_DLL_PUBLIC
39void
40sttype_oper_get(stnode_t *node, stnode_op_t *p_op, stnode_t **p_val1, stnode_t **p_val2);
41
42void
43sttype_test_set_match(stnode_t *node, stmatch_t how);
44
45stmatch_t
46sttype_test_get_match(stnode_t *node);
47
48#ifdef __cplusplus
49}
50#endif /* __cplusplus */
51
52#endif /* STTYPE_TEST_H */
Definition syntax-tree.h:78