4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/utils/overlapSelect/rowReader.h src/hg/utils/overlapSelect/rowReader.h
index b7b99d7..53b3681 100644
--- src/hg/utils/overlapSelect/rowReader.h
+++ src/hg/utils/overlapSelect/rowReader.h
@@ -1,36 +1,36 @@
 /* rowReader - read rows from tab files or databases without length restrictions */
 
 /* Copyright (C) 2010 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 #ifndef ROWREADER_H
 #define ROWREADER_H
 
 struct rowReader
 /* object to read records as rows */
 {
     int numCols;          /* number of columns in current row */
     char **row;           /* split row */
     int maxParsedCols;    /* number of columns that are to be parsed, others
                            * should be just passed through. */
     int colSpace;         /* number of columns allocated in row */
     struct lineFile *lf;  /* if reading from a file */
 };
 
 struct rowReader *rowReaderOpen(char *fileName, int maxParsedCols, boolean isPslFile);
 /* create a row reader for a file */
 
 void rowReaderFree(struct rowReader **rrPtr);
 /* free a row reader */
 
 boolean rowReaderNext(struct rowReader *rr);
 /* read the next row into the rowReader, return FALSE on EOF. */
 
 void rowReaderExpectAtLeast(struct rowReader *rr, int minCols);
 /* generate an error if there are not enough columns in a row */
 
 char **rowReaderCloneColumns(struct rowReader *rr);
 /* Make dynamic copy of columns currently in reader.  Vector is NULL terminated
  * and should be released with a single freeMem call. Must be called before
  * autoSql parser is called on a row, as it will modify array rows. */
 #endif