a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/basicBed.c src/lib/basicBed.c index 6b45cdf..1f19e44 100644 --- src/lib/basicBed.c +++ src/lib/basicBed.c @@ -6,31 +6,30 @@ * * There's additional bed-related code in src/hg/inc/bed.h. This module contains the * stuff that's independent of the database and other genomic structures. */ #include "common.h" #include "hash.h" #include "linefile.h" #include "dystring.h" #include "sqlNum.h" #include "sqlList.h" #include "rangeTree.h" #include "binRange.h" #include "basicBed.h" -static char const rcsid[] = "$Id: basicBed.c,v 1.3 2010/03/03 07:52:22 markd Exp $"; void bedStaticLoad(char **row, struct bed *ret) /* Load a row from bed table into ret. The contents of ret will * be replaced at the next call to this function. */ { ret->chrom = row[0]; ret->chromStart = sqlUnsigned(row[1]); ret->chromEnd = sqlUnsigned(row[2]); ret->name = row[3]; } struct bed *bedLoad(char **row) /* Load a bed from row fetched with select * from bed * from database. Dispose of this with bedFree(). */ {