| 410 | |
| 411 | #if defined(WIN_CE_PS2xx) || defined(WIN32_PLATFORM_HPCPRO) |
| 412 | int __cdecl isupper(int c) |
| 413 | { |
| 414 | char str[2]; |
| 415 | WCHAR wstr[2]; |
| 416 | str[0] = c; |
| 417 | str[1] = 0; |
| 418 | |
| 419 | NH_A2W(str, wstr, 1); |
| 420 | return iswupper(wstr[0]); |
| 421 | } |
| 422 | |
| 423 | int __cdecl isdigit(int c) |
| 424 | { |
no outgoing calls
no test coverage detected