4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/inc/agp.h src/hg/inc/agp.h
index 8c13b21..e346684 100644
--- src/hg/inc/agp.h
+++ src/hg/inc/agp.h
@@ -1,29 +1,29 @@
 /* Process an AGP file */
 
 /* Copyright (C) 2005 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ 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. */
 
 struct hash *agpLoadAll(char *agpFile);
 /* load AGP entries into a hash of AGP lists, one per chromosome */
 
 void agpAddAll(char *agpFile, struct hash *agpHash);
 /* add AGP entries from a file into a hash of AGP lists */
 
 void agpHashFree(struct hash **pAgpHash);
 /* Free up the hash created with agpLoadAll. */