Lines Matching defs:next
56 * key's data, and a pointer to the next node in the chain.
100 static struct sym *mknode(struct sym *next, char *key, void *data)
109 n->next = next;
130 sym = sym->next;
147 for (sn = sym->sym; sn != NULL && sn->next != NULL;
148 sn = sn->next) ;
149 sn->next = mknode(NULL, key, data);
150 assert(sn->next != NULL);
151 if (sn->next == NULL)
358 sym->cursor = sym->cursor->next;
389 for (se = sym->sym; se != NULL; se = se->next) {
421 for (se = sym->sym; se != NULL; se = se->next) {
456 nse = se->next;