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,26 +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. */ + 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. */