mk_char_to_bv method

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

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