DOKK / manpages / debian 10 / alliance / createablatom.3.en
CREATEABLATOM(3) ABL FUNCTIONS CREATEABLATOM(3)

createablatom - creates an atomic expression.

See the file buster/alliance/alc_origin.1.en.gz.

#include "abl101.h"
chain_list ∗createablatom( Atom )

char ∗Atom;

Name of the atom.

createablatom creates an atomic expression with the name Atom. This function uses namealloc with Atom as parameter.

createablatom returns a pointer to the new atomic expression.

#include "abl101.h"

chain_list ∗ExprA;
chain_list ∗ExprB;
chain_list ∗ExprAorB;
ExprA = createablatom( "a" );
ExprB = createablatom( "b" );
ExprAorB = createablbinexpr( ABL_OR, ExprA, ExprB );

abl(1), createabloper(3), createablnotexpr(3), createablbinexpr(3), createablunaryexpr(3), createablxorbinexpr(3), addablhexpr(3), addablqexpr(3).

See the file buster/alliance/alc_bug_report.1.en.gz.

October 1, 1997 ASIM/LIP6