Wireshark  4.3.0
The Wireshark network protocol analyzer
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. */
18 void
19 sttype_function_set_params(stnode_t *node, GSList *params);
20 
21 /* Get the function-definition record for a function stnode_t. */
22 df_func_def_t* sttype_function_funcdef(stnode_t *node);
23 
24 const char *sttype_function_name(stnode_t *node);
25 
26 /* Get the parameters for a function stnode_t. */
27 GSList* sttype_function_params(stnode_t *node);
28 
29 /* Free the memory of a param list */
30 void st_funcparams_free(GSList *params);
31 
32 #endif
Definition: dfunctions.h:39
Definition: syntax-tree.h:79