Damjan Jovanovic <damjan.jov at gmail.com> writes:
> +static void strlwrA(char *str)
> +{
> + while ((*str = tolower(*str))) str++;
> +}
That won't work on utf-8. You should do it on the Unicode string before
conversion.
--
Alexandre Julliard
julliard at winehq.org