get_func_decl_id method

int get_func_decl_id(
  1. Z3_context c,
  2. Z3_func_decl f
)

\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,
  );
}