.\" $Id: dupablexpr.3,v 1.1 2002/03/18 11:06:16 ludo Exp $ .\" @(#)dupablexpr.2 2.7 96/07/02 ; Labo masi cao-vlsi; Author : Jacomme Ludovic .TH DUPABLEXPR 3 "October 1, 1997" "ASIM/LIP6" "ABL FUNCTIONS" .SH NAME dupablexpr \- duplicates an expression. .so jessie/alliance/alc_origin.1.en.gz .SH SYNOPSYS .nf .if n \{\ .ft B \} .if t \{\ .ft CR \} #include "abl101.h" chain_list \(**dupablexpr( Expr ) chain_list \(**Expr; .ft R .fi .SH PARAMETERS .TP 20 \fIExpr\fP Expression to duplicate. .SH DESCRIPTION \fBdupablexpr\fP duplicates the expression \fIExpr\fP. .br .SH RETURN VALUE \fBdupablexpr\fP returns the duplicated expression. .SH EXAMPLE .ta 3n 6n 9n 12n 15n 18n 21n .nf .if n \{\ .ft B \} .if t \{\ .ft CR \} #include "abl101.h" chain_list \(**ExprAorB; chain_list \(**ExprAnorB; ExprAorB = createabloper( ABL_OR ); addablhexpr( ExprAorB, createablatom( "a" ) ); addablhexpr( ExprAorB, createablatom( "b" ) ); ExprAnorB = createablnotexpr( dupablexpr( ExprAorB ) ); /* displays (a or b) (a nor b) */ viewablexpr( ExprAorB, ABL_VIEW_VHDL ); viewablexpr( ExprAnorB, ABL_VIEW_VHDL ); .ft R .fi .SH SEE ALSO .BR abl (1), .BR delablexpr(3), .BR freeablexpr(3). .so jessie/alliance/alc_bug_report.1.en.gz