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

Function lowc

outdated/sys/wince/winmain.c:95–99  ·  view source on GitHub ↗
(c)

Source from the content-addressed store, hash-verified

93
94#ifndef STRNCMPI
95char lowc(c) /* force 'c' into lowercase */
96char c;
97{
98 return ((char) (('A' <= c && c <= 'Z') ? (c | 040) : c));
99}
100
101int strncmpi(s1, s2, n) /* case insensitive counted string comparison */
102register const char *s1, *s2;

Callers 3

strncmpiFunction · 0.70
Gem_player_selectionFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected