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

Function num_spells

src/spell.c:2416–2425  ·  view source on GitHub ↗

number of spells hero knows */

Source from the content-addressed store, hash-verified

2414
2415/* number of spells hero knows */
2416int
2417num_spells(void)
2418{
2419 int i;
2420
2421 for (i = 0; i < MAXSPELL; i++)
2422 if (spellid(i) == NO_SPELL)
2423 break;
2424 return i;
2425}
2426
2427/*spell.c*/

Callers 3

getspellFunction · 0.85
there_cmd_menu_selfFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected