mk_char_to_int method
\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,
);
}