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

Function highc

src/hacklib.c:75–79  ·  view source on GitHub ↗

force 'c' into uppercase */

Source from the content-addressed store, hash-verified

73
74/* force 'c' into uppercase */
75char
76highc(char c)
77{
78 return (char) (('a' <= c && c <= 'z') ? (c & ~040) : c);
79}
80
81/* force 'c' into lowercase */
82char

Callers 15

curs_vert_status_valsFunction · 0.85
update_valFunction · 0.85
ps_keyFunction · 0.85
race_keyFunction · 0.85
algn_keyFunction · 0.85
amii_player_selectionFunction · 0.85
handler_perminv_modeFunction · 0.85
txt2keyFunction · 0.85
locomotionFunction · 0.85
staggerFunction · 0.85
MonnamFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected