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/nibTwo.c src/lib/nibTwo.c
index 1d918f5..3f50c98 100644
--- src/lib/nibTwo.c
+++ src/lib/nibTwo.c
@@ -1,18 +1,21 @@
 /* nibTwo - Something to let you transparently access either
  * .2bit or .nib files. */
 
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "hash.h"
 #include "dnaseq.h"
 #include "nib.h"
 #include "twoBit.h"
 #include "nibTwo.h"
 
 
 struct nibTwoCache *nibTwoCacheNew(char *pathName)
 /* Get something that will more or less transparently get sequence from 
  * nib files or .2bit. */ 
 {
 struct nibTwoCache *ntc;
 AllocVar(ntc);
 ntc->pathName = cloneString(pathName);