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