mk_char_to_int method

Z3_ast mk_char_to_int(
  1. Z3_context c,
  2. Z3_ast ch
)

\brief Create an integer (code point) from character.

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

Implementation

Z3_ast mk_char_to_int(
  Z3_context c,
  Z3_ast ch,
) {
  return _mk_char_to_int(
    c,
    ch,
  );
}