Damjan Jovanovic <damjan.jov(a)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(a)winehq.org