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

Function isspace

outdated/sys/wince/celib.c:434–443  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

432}
433
434int __cdecl isspace(int c)
435{
436 char str[2];
437 WCHAR wstr[2];
438 str[0] = c;
439 str[1] = 0;
440
441 NH_A2W(str, wstr, 1);
442 return iswspace(wstr[0]);
443}
444
445int __cdecl isprint(int c)
446{

Callers 15

mswin_getmsghistoryFunction · 0.85
onMSNHCommandFunction · 0.85
curses_choose_characterFunction · 0.85
curses_rtrimFunction · 0.85
check_user_stringFunction · 0.85
assign_videoshadesFunction · 0.85
check_user_stringFunction · 0.85
amii_putstrFunction · 0.85
xpmgetlineFunction · 0.85
saveDiskPromptFunction · 0.85
parseoptionsFunction · 0.85
length_without_valFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected