56c5a21bd036712b38873f830b46b33351fbb5e4
giardine
  Fri Nov 5 13:21:35 2010 -0700
Added error checking for pgSnp and bedDetail custom track loaders, issue #1595
diff --git src/hg/inc/bedDetail.h src/hg/inc/bedDetail.h
index a0c12e3..3ec3ffd 100644
--- src/hg/inc/bedDetail.h
+++ src/hg/inc/bedDetail.h
@@ -60,17 +60,20 @@
 
 #define bedDetailTabOut(el,f) bedDetailOutput(el,f,'\t','\n');
 /* Print out bedDetail as a line in a tab-separated file. */
 
 #define bedDetailCommaOut(el,f) bedDetailOutput(el,f,',',',');
 /* Print out bedDetail as a comma separated list including final comma. */
 
 /* -------------------------------- End autoSql Generated Code -------------------------------- */
 
 extern char *bedDetailAutoSqlString;
 
 struct bedDetail *bedDetailLoadWithGaps(char **row, int size);
 /* Load a bedDetail from row split from a file or from database,
    may have parts of BED not included.  Dispose of this with bedDetailFree(). */
 
+struct bedDetail *bedDetailLineFileLoad (char **row, int size, struct lineFile *lf);
+/* load from linefile line, with error checking */
+
 #endif /* BEDDETAIL_H */