Searched defs:node_str (Results 1 – 1 of 1) sorted by relevance
84 struct node_str { struct85 NODE **n_prevp; /* pointer to previous node's n_next */86 NODE *n_next; /* next node in graph */87 NODE **n_arcs; /* array of arcs to other nodes */88 int n_narcs; /* number of arcs in n_arcs[] */89 int n_arcsize; /* size of n_arcs[] array */90 int n_refcnt; /* # of arcs pointing to this node */91 int n_flags; /* NF_* */92 char n_name[1]; /* name of this node */