mk_str_to_int method

Z3_ast mk_str_to_int(
  1. Z3_context c,
  2. Z3_ast s
)

\brief Convert string to integer.

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

Implementation

Z3_ast mk_str_to_int(
  Z3_context c,
  Z3_ast s,
) {
  return _mk_str_to_int(
    c,
    s,
  );
}