Open trane opened 13 years ago
/* * Could we use fewer comparisons by making this a while loop? * entry = map->first * while (entry->next) {... * ? */ for (entry = map->first; entry; entry = entry->next) {