Home | History | Annotate | Download | only in nawk-20071023

Lines Matching refs:Node

130 /* Node:  parse tree is made of nodes, with Cell's at bottom */
132 typedef struct Node {
134 struct Node *nnext;
137 struct Node *narg[1]; /* variable: actual size set by calling malloc */
138 } Node;
140 #define NIL ((Node *) 0)
142 extern Node *winner;
143 extern Node *nullstat;
144 extern Node *nullnode;
173 /* node types */
212 Node *np;