func_decl_to_string method

Z3_string func_decl_to_string(
  1. Z3_context c,
  2. Z3_func_decl d
)

def_API('Z3_func_decl_to_string', STRING, (_in(CONTEXT), _in(FUNC_DECL)))

Implementation

Z3_string func_decl_to_string(
  Z3_context c,
  Z3_func_decl d,
) {
  return _func_decl_to_string(
    c,
    d,
  );
}