Lines Matching defs:list
58 static struct name *put(struct name *list, struct name *node);
61 * Allocate a single element of a name list,
81 * Find the tail of a list and return it.
98 * Extract a list of names from a line,
99 * and make a list of names from it.
100 * Return the list or NIL if none found.
145 * Turn a list of names into a string of the same names.
192 * For each recipient in the passed name list with a /
194 * and remove them from the recipient list.
338 * the list; now for sake of header expansion
403 * file and insert them into the list.
554 * Compute the length of the passed name list and
588 * Unpack the name list onto a vector of strings.
589 * Return an error if the name list won't fit.
676 * Remove all of the duplicates from the passed name list by
678 * Return the head of the new list.
719 * current t. If at the front of the list,
720 * the new guy becomes the new head of the list.
735 * middle of the list.
747 * Now the list headed up by new is sorted.
786 * Put another node onto a list of names and return
787 * the list.
791 put(struct name *list, struct name *node)
793 node->n_flink = list;
795 if (list != NIL)
796 list->n_blink = node;
830 * list, replacing said value if need be.