Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
sttype-set.h
1 /*
2  * Wireshark - Network traffic analyzer
3  * By Gerald Combs <gerald@wireshark.org>
4  * Copyright 2001 Gerald Combs
5  *
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef STTYPE_SET_H
11 #define STTYPE_SET_H
12 
13 #include <glib.h>
14 
15 #include "ws_attributes.h"
16 
17 void
18 sttype_set_replace_element(stnode_t *node, stnode_t *oldnode, stnode_t *newnode);
19 
20 gboolean
21 sttype_set_convert_to_range(stnode_t **node_left, stnode_t **node_right);
22 
23 void
24 set_nodelist_free(GSList *params);
25 
26 #endif
Definition: syntax-tree.h:48