Lines Matching defs:table
1 /* $NetBSD: table.c,v 1.11 2015/09/03 08:16:36 dholland Exp $ */
35 static char sccsid[] = "@(#)table.c 8.1 (Berkeley) 6/4/93";
37 __RCSID("$NetBSD: table.c,v 1.11 2015/09/03 08:16:36 dholland Exp $");
42 * Routines to handle insertion, deletion, etc on the table
76 TABLE_ENTRY *table = NIL;
81 * Look in the table for an invitation that matches the current
94 for (ptr = table; ptr != NIL; ptr = ptr->next) {
127 * out of date entries in the table while we are it.
131 for (ptr = table; ptr != NIL; ptr = ptr->next) {
172 ptr->next = table;
176 table = ptr;
204 for (ptr = table; ptr != NIL; ptr = ptr->next) {
226 if (table == ptr)
227 table = ptr->next;