Skip site navigation (1)Skip section navigation (2)

  
 
  

home | help
DELABLEXPR(3)			  ABL FUNCTIONS 		   DELABLEXPR(3)

NAME
     delablexpr - deletes an expression.

SYNOPSIS
     #include "abl101.h"
       void delablexpr( Expr )
	chain_list *Expr;

PARAMETERS
     Expr		 Expression to delete.

DESCRIPTION
     delablexpr deletes the expression Expr.

RETURN VALUE
     delablexpr returns nothing.

EXAMPLE
     #include "abl101.h"
	chain_list *ExprA;
	chain_list *ExprB;
	chain_list *ExprAorB;
	ExprA = createablatom( "a" );
	ExprB = createablatom( "b" );
	ExprAorB  = createablbinexpr( ABL_OR, ExprA, ExprB );
	...
	delablexpr( ExprAorB );
	ExprAorB = (chain_list *)0;
	...

SEE ALSO
     abl(1) freeablexpr(3).  delablexprnum(3).

ASIM/LIP6			 October 1, 1997		   DELABLEXPR(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=delablexpr&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help