src/inc/linefile.h 1.36

1.36 2009/06/23 23:39:10 kent
Adding lineFileRewind.
Index: src/inc/linefile.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/linefile.h,v
retrieving revision 1.35
retrieving revision 1.36
diff -b -B -U 4 -r1.35 -r1.36
--- src/inc/linefile.h	21 Feb 2008 02:13:25 -0000	1.35
+++ src/inc/linefile.h	23 Jun 2009 23:39:10 -0000	1.36
@@ -102,8 +102,11 @@
 
 void lineFileSeek(struct lineFile *lf, off_t offset, int whence);
 /* Seek to read next line from given position. */
 
+void lineFileRewind(struct lineFile *lf);
+/* Return lineFile to start. */
+
 void lineFileAbort(struct lineFile *lf, char *format, ...)
 /* Print file name, line number, and error message, and abort. */
 #if defined(__GNUC__)
 __attribute__((format(printf, 2, 3)))