mk_char_from_bv method
\brief Create a character from a bit-vector (code point).
def_API('Z3_mk_char_from_bv', AST, (_in(CONTEXT), _in(AST)))
Implementation
Z3_ast mk_char_from_bv(
Z3_context c,
Z3_ast bv,
) {
return _mk_char_from_bv(
c,
bv,
);
}