mk_char_to_bv method
\brief Create a bit-vector (code point) from character.
def_API('Z3_mk_char_to_bv', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast mk_char_to_bv(
Z3_context c,
Z3_ast ch,
) {
return _mk_char_to_bv(
c,
ch,
);
}