X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1691e80890e5d8ba258c51c214a3e91880e1db2b..2a1a6bda2b5a7fd8fd79cdf60ee86a02c2d55107:/sbr/trimcpy.c?ds=sidebyside diff --git a/sbr/trimcpy.c b/sbr/trimcpy.c index d1355485..b640ea6f 100644 --- a/sbr/trimcpy.c +++ b/sbr/trimcpy.c @@ -4,16 +4,18 @@ * -- replace internal whitespace with spaces, * -- then return a copy. * - * $Id$ + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #include char * -trimcpy (char *cp) +trimcpy (unsigned char *cp) { - char *sp; + unsigned char *sp; /* skip over leading whitespace */ while (isspace(*cp))