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/annoOption.c src/lib/annoOption.c
index 5faa66a..bb8ac6d 100644
--- src/lib/annoOption.c
+++ src/lib/annoOption.c
@@ -1,17 +1,20 @@
 /* annoOption -- optionSpec-style param plus its value */
 
+/* Copyright (C) 2013 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "annoOption.h"
 
 struct annoOption *annoOptionCloneList(struct annoOption *list)
 /* Return a newly allocated copy of list. */
 {
 struct annoOption *newList = NULL, *afo;
 for (afo = list;  afo != NULL;  afo = afo->next)
     {
     struct annoOption *newAfo = CloneVar(afo);
     newAfo->spec.name = cloneString(afo->spec.name);
     newAfo->value = NULL;
     unsigned opFlags = afo->spec.flags;
     if (opFlags & OPTION_MULTI)
 	{
 	switch (opFlags & OPTION_TYPE_MASK)