Tree Parsing
TP generates a C module consisting of an interface file tp_gen.h
and an implementation file tp_gen.c .
The interface file exports definitions for the following identifiers:
TPNode
- the pointer type for internal representations of tree nodes
TPNULL
- a pointer of type
TPNode representing no tree
TPNull()
- a macro without parameters that yields
TPNULL , to be used
where a function notation is needed
(as in WITH clauses of LIDO's CONSTITUENTS construct)
|