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/tabRow.c src/lib/tabRow.c
index 0d61025..5f9fbce 100644
--- src/lib/tabRow.c
+++ src/lib/tabRow.c
@@ -1,19 +1,22 @@
 /* tabRow - a row from a database or a tab-separated file held in
  * memory.   Just a light wrapper around an array of strings. 
  * Also some routines to convert slLines to tabRows. */
 
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "tabRow.h"
 
 
 struct tabRow *tabRowNew(int colCount)
 /* Return new row. */
 {
 struct tabRow *row = needMem(sizeof(*row) + colCount*sizeof(char*));
 row->colCount = colCount;
 return row;
 }
 
 int tabRowMaxColCount(struct tabRow *rowList)
 /* Return largest column count */
 {