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/annoFormatter.c src/lib/annoFormatter.c
index 34525bf..ce97114 100644
--- src/lib/annoFormatter.c
+++ src/lib/annoFormatter.c
@@ -1,26 +1,29 @@
 /* annoFormatter -- aggregates, formats and writes output from multiple sources */
 
+/* Copyright (C) 2013 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "annoFormatter.h"
 
 struct annoOption *annoFormatterGetOptions(struct annoFormatter *self)
 /* Return supported options and current settings.  Callers can modify and free when done. */
 {
 return annoOptionCloneList(self->options);
 }
 
 void annoFormatterSetOptions(struct annoFormatter *self, struct annoOption *newOptions)
 /* Free old options and use clone of newOptions. */
 {
 annoOptionFreeList(&(self->options));
 self->options = annoOptionCloneList(newOptions);
 }
 
 void annoFormatterFree(struct annoFormatter **pSelf)
 /* Free self. This should be called at the end of subclass close methods, after
  * subclass-specific connections are closed and resources are freed. */
 {
 if (pSelf == NULL)
     return;
 annoOptionFreeList(&((*pSelf)->options));
 freez(pSelf);
 }