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/inc/axtLib.h src/hg/inc/axtLib.h
index 680717e..8c45e51 100644
--- src/hg/inc/axtLib.h
+++ src/hg/inc/axtLib.h
@@ -1,22 +1,25 @@
+/* Copyright (C) 2003 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #ifndef AXTLIB_H
 #define AXTLIB_H
 
 void axtListReverse(struct axt **axtList, char *queryDb);
 /* reverse complement an entire axtList */
 
 struct axt *createAxtGap(char *nibFile, char *chrom, 	
 			 int start, int end, char strand);
 /* return an axt alignment with the query all deletes - null aligment */
 
 void axtFillGap(struct axt **aList, char *nibDir, char direction);
 /* fill gaps between blocks with null axts with seq on t and q seq all gaps*/
 /* direction = '+' ascending on + strand, - is descending on - strand */
 
 char *getAxtFileName(char *chrom, char *toDb, char *alignment, char *fromDb);
 /* return file name for a axt alignment */
 
 struct axt *netFillToAxt(struct cnFill *fill, struct dnaSeq *tChrom, int tSize,
 	struct hash *qChromHash, char *nibDir,
 	struct chain *chain, boolean swap);
 /* Convert subset of chain as defined by fill to axt. swap query and target if swap is true.*/
 #endif