a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/lineRange/lineRange.c src/utils/lineRange/lineRange.c
index 077a7e8..27c335e 100644
--- src/utils/lineRange/lineRange.c
+++ src/utils/lineRange/lineRange.c
@@ -1,60 +1,59 @@
 /* lineRange - Get a range of lines from file. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 
-static char const rcsid[] = "$Id: lineRange.c,v 1.1 2004/03/19 19:17:03 kent Exp $";
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "lineRange - Get a range of lines from file\n"
   "usage:\n"
   "   lineRange fileName start count\n"
   "Print <count> lines from fileName starting at 1-based <start>."
   "options:\n"
   "   -xxx=XXX\n"
   );
 }
 
 static struct optionSpec options[] = {
    {NULL, 0},
 };
 
 void lineRange(char *fileName, int start, int count)
 /* lineRange - Get a range of lines from file. */
 {
 struct lineFile *lf = lineFileOpen(fileName, FALSE);
 char *line;
 int lineSize;
 int i;
 if (count == 0 || start == 0)
     errAbort("Expecting positive number for start, count in command line");
 
 /* Skip over first lines. */
 for (i=1; i<start; ++i)
     {
     if (!lineFileNext(lf, &line, &lineSize))
         errAbort("%s doesn't have %d lines", fileName, start);
     }
 /* Print coutn lines. */
 for (i=0; i<count; ++i)
     {
     if (!lineFileNext(lf, &line, &lineSize))
          break;
     mustWrite(stdout, line, lineSize);
     }
 lineFileClose(&lf);
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, options);
 if (argc != 4)
     usage();
 lineRange(argv[1], atoi(argv[2]), atoi(argv[3]));
 return 0;
 }