aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Cutil.mli
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/Cutil.mli')
-rw-r--r--cparser/Cutil.mli6
1 files changed, 6 insertions, 0 deletions
diff --git a/cparser/Cutil.mli b/cparser/Cutil.mli
index 9587c57b..2e61cf5d 100644
--- a/cparser/Cutil.mli
+++ b/cparser/Cutil.mli
@@ -155,6 +155,12 @@ val floatconst : float -> fkind -> exp
(* Build expression for given float constant. *)
val nullconst : exp
(* Expression for [(void * ) 0] *)
+val eaddrof : exp -> exp
+ (* Expression for [&e] *)
+val eassign : exp -> exp -> exp
+ (* Expression for [e1 = e2] *)
+val ecomma : exp -> exp -> exp
+ (* Expression for [e1, e2] *)
val sskip: stmt
(* The [skip] statement. No location. *)
val sseq : location -> stmt -> stmt -> stmt