e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/quotedP.c src/lib/quotedP.c
index 1342a4d..7dbd111 100644
--- src/lib/quotedP.c
+++ src/lib/quotedP.c
@@ -1,15 +1,18 @@
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "quotedP.h"
 
 
 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];