| 422 | } |
| 423 | |
| 424 | static void hid_internal_towupper(wchar_t* string) |
| 425 | { |
| 426 | for (wchar_t* p = string; *p; ++p) *p = towupper(*p); |
| 427 | } |
| 428 | |
| 429 | static int hid_internal_extract_int_token_value(wchar_t* string, const wchar_t* token) |
| 430 | { |
no outgoing calls
no test coverage detected