get_app_decl method

Z3_func_decl get_app_decl(
  1. Z3_context c,
  2. Z3_app a
)

\brief Return the declaration of a constant or function application.

def_API('Z3_get_app_decl', FUNC_DECL, (_in(CONTEXT), _in(APP)))

Implementation

Z3_func_decl get_app_decl(
  Z3_context c,
  Z3_app a,
) {
  return _get_app_decl(
    c,
    a,
  );
}