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/tests/testQuotedP.c src/lib/tests/testQuotedP.c
index 7825e74..9f3fe59 100644
--- src/lib/tests/testQuotedP.c
+++ src/lib/tests/testQuotedP.c
@@ -1,15 +1,18 @@
+/* Copyright (C) 2006 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "quotedP.h"
 
 int main(int argc, char *argv[])
 {
 char *encoded = NULL;
 char *decoded = NULL;
 if (argc != 2)
 errAbort("%s: Specify a string to encode/decode on commandline using quotes.\n"
        , argv[0]);
 	    
 encoded = quotedPrintableEncode(argv[1]);
 decoded = quotedPrintableDecode(argv[1]);
 
 printf("original input: [%s]\nquoted-printable encoding: [%s]\nquoted-p decoding: [%s]\n", argv[1], encoded, decoded);