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