Damjan Jovanovic <[email protected]> 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 [email protected]
