Lines Matching defs:append
717 * append - segment to add
720 * Adds a copy of the append list at the end of the segment list
723 XmuAppendSegment(XmuSegment *segment, XmuSegment *append)
725 if (!segment || !append)
732 while (append)
734 if (XmuValidSegment(append))
736 if ((segment->next = XmuNewSegment(append->x1, append->x2)) == NULL)
740 append = append->next;