[PATCH v3 1/3] vbscript: Use ASCII-only case-insensitive compare for identifier lookups. VBScript identifiers are ASCII-only - Windows rejects all non-ASCII characters (Latin-1, Cyrillic, CJK) at the lexer level with error 1032 'Invalid character'. Wine's lexer previously used iswalpha()/iswalnum() which accepted non-ASCII characters. Replace the locale-aware wcsicmp() with an inline ASCII-only vbs_wcsicmp() for all identifier comparisons. This avoids the expensive locale grab/free cycle (get_current_locale