createablatom(3) - Linux man page
Name
createablatom - creates an atomic expression.
Synopsys
#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).