Avoid ctype.h .
[yaz-moved-to-github.git] / src / cclstr.c
index 7c1e3e9..a970643 100644 (file)
@@ -9,7 +9,7 @@
 #if HAVE_CONFIG_H
 #include <config.h>
 #endif
-#include <ctype.h>
+#include <yaz/yaz-iconv.h>
 #include <stdio.h>
 #include <stdlib.h>
 
 
 static int ccli_toupper (int c)
 {
-    return toupper (c);
+    if (yaz_islower(c))
+        return yaz_toupper(c);
+    else
+        return c;
 }
 
 int (*ccl_toupper)(int c) = NULL;