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/bPlusTree.c src/lib/bPlusTree.c
index 05bdfab..6b09e15 100644
--- src/lib/bPlusTree.c
+++ src/lib/bPlusTree.c
@@ -1,15 +1,18 @@
+/* Copyright (C) 2013 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 /* bptFile - B+ Trees.  These are a method of indexing data similar to binary trees, but 
  * with many children rather than just two at each node. They work well when stored on disk,
  * since typically only two or three disk accesses are needed to locate any particular
  * piece of data.  This implementation is *just* for disk based storage.  For memory
  * use the rbTree instead. Currently the implementation is just useful for data warehouse
  * type applications.  That is it implements a function to create a b+ tree from bulk data
  * (bptFileCreate) and a function to lookup a value given a key (bptFileFind) but not functions
  * to add or delete individual items.
  *
  * The layout of the file on disk is:
  *    header
  *    root node
  *    (other nodes)
  * In general when the tree is first built the higher level nodes are stored before the
  * lower level nodes.  It is possible if a b+ tree is dynamically updated for this to