mk_string_to_code method

Z3_ast mk_string_to_code(
  1. Z3_context c,
  2. Z3_ast a
)

\brief String to code conversion.

def_API('Z3_mk_string_to_code', AST, (_in(CONTEXT), _in(AST)))

Implementation

Z3_ast mk_string_to_code(
  Z3_context c,
  Z3_ast a,
) {
  return _mk_string_to_code(
    c,
    a,
  );
}