mk_char_from_bv method

Z3_ast mk_char_from_bv(
  1. Z3_context c,
  2. Z3_ast bv
)

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