| 443 | } |
| 444 | |
| 445 | int __cdecl isprint(int c) |
| 446 | { |
| 447 | char str[2]; |
| 448 | WCHAR wstr[2]; |
| 449 | str[0] = c; |
| 450 | str[1] = 0; |
| 451 | |
| 452 | NH_A2W(str, wstr, 1); |
| 453 | return iswprint(wstr[0]); |
| 454 | } |
| 455 | |
| 456 | char *__cdecl _strdup(const char *s) |
| 457 | { |
no outgoing calls
no test coverage detected