MCPcopy Create free account
hub / github.com/NetHack/NetHack / free_ttlist

Function free_ttlist

src/topten.c:614–625  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

612#endif /* XLOGFILE */
613
614staticfn void
615free_ttlist(struct toptenentry *tt)
616{
617 struct toptenentry *ttnext;
618
619 while (tt->points > 0) {
620 ttnext = tt->tt_next;
621 dealloc_ttentry(tt);
622 tt = ttnext;
623 }
624 dealloc_ttentry(tt);
625}
626
627void
628topten(int how, time_t when)

Callers 2

toptenFunction · 0.85
prscoreFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected