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/visiGene/jackson/mysqlEscape/mysqlEscape.c src/hg/visiGene/jackson/mysqlEscape/mysqlEscape.c index 8f3c296..c611ac4 100644 --- src/hg/visiGene/jackson/mysqlEscape/mysqlEscape.c +++ src/hg/visiGene/jackson/mysqlEscape/mysqlEscape.c @@ -1,27 +1,27 @@ /* mysqlEscape - GALT BARBER 2006-03-31 * Reads data formatted with long string field and line terminators. * it can be used to just parse the data and count the fields and rows, * but it can also be used to do much more, i.e. convert to another set of terminators, * insert \N to mark NULL values for mysql, and escape the other fields generally. * It also serves as a model of how to parse for non-single-character punctuators * capable of operating quickly on large files while using a modest amount of memory * in a rolling overlapped buffer. */ /* Copyright (C) 2007 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. */ #include "common.h" #include "options.h" #include "dystring.h" #include <mysql.h> #define BUFSIZE 32768 boolean noOutput = FALSE; boolean noEscape = FALSE; boolean noNullFix = FALSE; boolean tabSep = FALSE; #define TTERM "<UCSCtabUCSC>"