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

Function strrchr

outdated/sys/wince/celib.c:463–472  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

461}
462
463char *__cdecl strrchr(const char *s, int c)
464{
465 WCHAR wstr[1024];
466 WCHAR *w;
467 w = wcsrchr(NH_A2W(s, wstr, 1024), c);
468 if (w)
469 return (char *) (s + (w - wstr));
470 else
471 return NULL;
472}
473
474int __cdecl _stricmp(const char *a, const char *b)
475{

Callers 15

aboutMsgFunction · 0.85
fopen_text_fileFunction · 0.85
mainFunction · 0.85
exenameFunction · 0.85
nt_assert_failedFunction · 0.85
get_executable_pathFunction · 0.85
CASE2Function · 0.85
parse_brdcstFunction · 0.85
exepathFunction · 0.85
dirnameFunction · 0.85
basenameFunction · 0.85
sym_valFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected