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

Function isupper

outdated/sys/wince/celib.c:412–421  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

410
411#if defined(WIN_CE_PS2xx) || defined(WIN32_PLATFORM_HPCPRO)
412int __cdecl isupper(int c)
413{
414 char str[2];
415 WCHAR wstr[2];
416 str[0] = c;
417 str[1] = 0;
418
419 NH_A2W(str, wstr, 1);
420 return iswupper(wstr[0]);
421}
422
423int __cdecl isdigit(int c)
424{

Callers 8

keyPressEventMethod · 0.85
CASE2Function · 0.85
poisonedFunction · 0.85
pick_animalFunction · 0.85
select_newcham_formFunction · 0.85
newchamFunction · 0.85
rndmonst_adjFunction · 0.85
case_insensitive_compFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected