createablatom.3alc - Man Page
creates an atomic expression.
Synopsis
#include "abl101.h" chain_list ∗createablatom( Atom ) char ∗Atom;
Parameters
- Atom
Name of the atom.
Description
createablatom creates an atomic expression with the name Atom. This function uses namealloc with Atom as parameter.
Return Value
createablatom returns a pointer to the new atomic expression.
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 );
See Also
abl(1), createabloper(3), createablnotexpr(3), createablbinexpr(3), createablunaryexpr(3), createablxorbinexpr(3), addablhexpr(3), addablqexpr(3).
Referenced By
addablhexpr.3alc(3), addablqexpr.3alc(3), createablbinexpr.3alc(3), createablnotexpr.3alc(3), createabloper.3alc(3), createablunaryexpr.3alc(3), createablxorbinexpr.3alc(3).
October 1, 1997 ASIM/LIP6 ABL FUNCTIONS