| 461 | } |
| 462 | |
| 463 | char *__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 | |
| 474 | int __cdecl _stricmp(const char *a, const char *b) |
| 475 | { |
no outgoing calls
no test coverage detected