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/agp.h src/hg/inc/agp.h
index f91c2ba..8c13b21 100644
--- src/hg/inc/agp.h
+++ src/hg/inc/agp.h
@@ -1,17 +1,20 @@
 /* Process an AGP file */
 
+/* Copyright (C) 2005 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 struct agp {
     /* represents a line of an AGP file -- either a fragment or a gap */
     struct agp *next;
     bool isFrag;
     void *entry;        /* agpFrag or agpGap */
 } agp;
 
 struct agp *agpLoad(char **row, int ct);
 /* Load an AGP entry from array of strings.  Dispose with agpFree */
 
 void agpFree(struct agp **pAgp);
 /* Free a dynamically allocated AGP entry */
 
 void agpFreeList(struct agp **pList);
 /* Free a list of dynamically allocation AGP entries. */