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/hg/xmlToSql/tables.h src/hg/xmlToSql/tables.h
index 1af77f3..4aea918 100644
--- src/hg/xmlToSql/tables.h
+++ src/hg/xmlToSql/tables.h
@@ -1,18 +1,21 @@
 /* Tables - the data structures for holding all the info about
  * a table, it's fields, and it's relationships to other tables. */
 
+/* Copyright (C) 2005 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #ifndef TABLES_H
 #define TABLES_H
 
 struct table
 /* Information about one of the tables we are making. */
     {
     struct table *next;		/* Next in list. */
     char *name;			/* Name of table. */
     struct field *fieldList;	/* Information about each field. */
     struct hash *fieldHash;	/* Fields keyed by field name. */
     int fieldCount;		/* Count of fields, including made up ones. */
     struct hash *fieldMixedHash;/* Fields keyed by field mixed case name. */
     struct elStat *elStat;	/* Associated elStat structure. */
     struct dtdElement *dtdElement; /* Associated dtd element. */
     struct field *primaryKey;	/* Primary key if any. */