3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-03 22:05:45 +00:00

Add character access functions #5764

This commit is contained in:
Nikolaj Bjorner 2022-01-10 12:33:58 -08:00
parent 2b934b601d
commit 21feefeac5
3 changed files with 73 additions and 6 deletions

View file

@ -3843,6 +3843,13 @@ extern "C" {
*/
Z3_ast Z3_API Z3_mk_re_full(Z3_context c, Z3_sort re);
/**
\brief Create a character literal
def_API('Z3_mk_char', AST, (_in(CONTEXT), _in(UINT)))
*/
Z3_ast Z3_API Z3_mk_char(Z3_context c, unsigned ch);
/**
\brief Create less than or equal to between two characters.