| 432 | } |
| 433 | |
| 434 | int __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 | |
| 445 | int __cdecl isprint(int c) |
| 446 | { |
no outgoing calls
no test coverage detected