j
k
j a
j l
Damjan Jovanovic damjan.jov@gmail.com writes:
+static void strlwrA(char *str) +{ while ((*str = tolower(*str))) str++; +}
+static void strlwrA(char *str) +{
+}
That won't work on utf-8. You should do it on the Unicode string before conversion.
Back to the thread
Back to the list