a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/agp.c src/hg/lib/agp.c index 44c71a3..0f1475e 100644 --- src/hg/lib/agp.c +++ src/hg/lib/agp.c @@ -1,25 +1,24 @@ /* Process AGP file */ #include "common.h" #include "agp.h" #include "agpFrag.h" #include "agpGap.h" #include "linefile.h" #include "hash.h" -static char const rcsid[] = "$Id: agp.c,v 1.3 2005/05/03 02:19:42 aamp Exp $"; void agpAddAll(char *agpFile, struct hash *agpHash) /* add AGP entries from a file into a hash of AGP lists */ { int i; struct hashEl *hel; struct hash *hash = agpLoadAll(agpFile); if (hash == NULL || agpHash == NULL) return; for (i = 0; i < hash->size; i++) { for (hel = hash->table[i]; hel != NULL; hel = hel->next) hashAdd(agpHash, hel->name, hel->val);