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

Function wizcustom_glyphids

src/glyphs.c:807–821  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

805}
806
807void
808wizcustom_glyphids(winid win)
809{
810 int glyphnum;
811 char *id;
812
813 if (!glyphid_cache)
814 return;
815 for (glyphnum = 0; glyphnum < MAX_GLYPH; ++glyphnum) {
816 id = find_glyphid_in_cache_by_glyphnum(glyphnum);
817 if (id) {
818 wizcustom_callback(win, glyphnum, id);
819 }
820 }
821}
822
823staticfn int
824parse_id(

Callers 1

wiz_customFunction · 0.85

Calls 2

wizcustom_callbackFunction · 0.85

Tested by

no test coverage detected