mk_char_le method
\brief Create less than or equal to between two characters.
def_API('Z3_mk_char_le', AST, (_in(CONTEXT), _in(AST), _in(AST)))
Implementation
Z3_ast mk_char_le(
Z3_context c,
Z3_ast ch1,
Z3_ast ch2,
) {
return _mk_char_le(
c,
ch1,
ch2,
);
}