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/liftUp.h src/hg/inc/liftUp.h
index 9daa701..a7ecae9 100644
--- src/hg/inc/liftUp.h
+++ src/hg/inc/liftUp.h
@@ -1,23 +1,26 @@
+/* Copyright (C) 2003 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #ifndef LIFTUP_H
 #define LIFTUP_H
 
 struct liftSpec
 /* How to lift coordinates. */
     {
     struct liftSpec *next;	/* Next in list. */
     int offset;			/* Offset to add. */
     char *oldName;		/* Name in source file. */
     int oldSize;                /* Size of old sequence. */
     char *newName;		/* Name in dest file. */
     int newSize;                   /* Size of new sequence. */
     char strand;                /* Strand of contig relative to chromosome. */
     };
 
 struct liftSpec *readLifts(char *fileName);
 /* Read in lift file. */
 
 struct hash *hashLift(struct liftSpec *list, boolean revOk);
 /* Return a hash of the lift spec.  If revOk, allow - strand elements.  */
 
 #endif /* LIFTUP_H */