Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
sttype-function.h
Go to the documentation of this file.
1
11#ifndef STTYPE_FUNCTION_H
12#define STTYPE_FUNCTION_H
13
14#include "dfilter-int.h"
15#include "dfunctions.h"
16
17/* Set the parameters for a function stnode_t. */
18void
19sttype_function_set_params(stnode_t *node, GSList *params);
20
21/* Get the function-definition record for a function stnode_t. */
22df_func_def_t* sttype_function_funcdef(stnode_t *node);
23
24const char *sttype_function_name(stnode_t *node);
25
26/* Get the parameters for a function stnode_t. */
27GSList* sttype_function_params(stnode_t *node);
28
29/* Free the memory of a param list */
30void st_funcparams_free(GSList *params);
31
32#endif
Definition dfunctions.h:39
Definition syntax-tree.h:78