Change all chars being passed to the ctype macros (isalph(), etc.) to
[mmh] / sbr / trimcpy.c
index c341f00..8b57ad6 100644 (file)
@@ -15,9 +15,9 @@
 
 
 char *
-trimcpy (char *cp)
+trimcpy (unsigned char *cp)
 {
-    char *sp;
+    unsigned char *sp;
 
     /* skip over leading whitespace */
     while (isspace(*cp))