a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/quotedP.c src/lib/quotedP.c index f56d24e..1342a4d 100644 --- src/lib/quotedP.c +++ src/lib/quotedP.c @@ -1,21 +1,20 @@ #include "common.h" #include "linefile.h" #include "dystring.h" #include "quotedP.h" -static char const rcsid[] = "$Id: quotedP.c,v 1.4 2008/09/17 17:58:56 galt Exp $"; char *quotedPrintableEncode(char *input) /* Use Quoted-Printable standard to encode a string. */ { struct dyString *dy = dyStringNew(0); size_t i=0,l=strlen(input); int width = 0; for (i=0; i < l; ++i) { char c = input[i]; switch (c) { case '=': case '\t': case '\r':