NIL
for (ptr = table; ptr != NIL; ptr = next) {
if (ptr == NIL) {
if (ptr->next != NIL)
ptr->last = NIL;
for (ptr = table; ptr != NIL; ptr = ptr->next) {
if (ptr != NIL) {
else if (ptr->last != NIL)
if (ptr->next != NIL)
static TABLE_ENTRY *table = NIL;
for (ptr = table; ptr != NIL; ptr = next) {