]> git.marmaro.de Git - mmh/blobdiff - sbr/trimcpy.c
Change all chars being passed to the ctype macros (isalph(), etc.) to
[mmh] / sbr / trimcpy.c
index c341f00c4abed66e75d32720514fc72f7f0d09fe..8b57ad688450c35060ab0f603502f07555c6b393 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))