package c
Type Members
-
case class
CAddrExp
(exp: CExpression) extends CUnaryExpression with Product with Serializable
C address-of expressions.
-
case class
CAddrType
(basetype: CType) extends CType with Product with Serializable
C reference type.
-
case class
CCall
(s: String, ps: Seq[CExpression]) extends CStatement with Product with Serializable
C call statements.
-
case class
CDerefExp
(exp: CExpression) extends CUnaryExpression with Product with Serializable
C dereference expressions.
- trait CPrettyPrinter extends L1.c.CPrettyPrinter
-
case class
CStrExp
(s: String) extends CExpression with Product with Serializable
C string expressions.
-
case class
CVoidType
() extends CType with Product with Serializable
C void type.