Z3_func_decl_to_string

Function Z3_func_decl_to_string 

Source
pub unsafe extern "C" fn Z3_func_decl_to_string(
    c: Z3_context,
    d: Z3_func_decl,
) -> Z3_string
Expand description

Convert the given func decl AST node into a string.

This is a wrapper around Z3_ast_to_string.

Warning: The result buffer is statically allocated by Z3. It will be automatically deallocated when Z3_del_context is invoked. So, the buffer is invalidated in the next call to Z3_ast_to_string.

ยงSee also: