MCPcopy Index your code
hub / github.com/NetHack/NetHack / find_delayed_killer

Function find_delayed_killer

src/end.c:1725–1735  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1723}
1724
1725struct kinfo *
1726find_delayed_killer(int id)
1727{
1728 struct kinfo *k;
1729
1730 for (k = svk.killer.next; k != (struct kinfo *) 0; k = k->next) {
1731 if (k->id == id)
1732 break;
1733 }
1734 return k;
1735}
1736
1737void
1738dealloc_killer(struct kinfo *kptr)

Callers 6

delayed_killerFunction · 0.85
make_sickFunction · 0.85
make_slimedFunction · 0.85
make_stonedFunction · 0.85
nh_timeoutFunction · 0.85
polymanFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected