get_func_decl_id method
\brief Return a unique identifier for \c f.
def_API('Z3_get_func_decl_id', UINT, (_in(CONTEXT), _in(FUNC_DECL)))
Implementation
int get_func_decl_id(
Z3_context c,
Z3_func_decl f,
) {
return _get_func_decl_id(
c,
f,
);
}