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/lib/windowsToAscii.c src/lib/windowsToAscii.c
index b3d91fa..c0922c0 100644
--- src/lib/windowsToAscii.c
+++ src/lib/windowsToAscii.c
@@ -1,23 +1,23 @@
 /* Copyright (C) 2017 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 "iconv.h"
 #include "common.h"
 
 char *windowsToAscii(char *input)
 /* Convert windows-1250 to ascii. */
 {
 if (input == NULL)
     return NULL;
 
 iconv_t convType = iconv_open("ASCII//TRANSLIT", "WINDOWS-1250");  
 size_t inSize = strlen(input);
 size_t outSize = 1024;  
 char buffer[outSize];  
 char *outString = buffer;  
 char *inPtr = input;  
 iconv(convType, &inPtr, &inSize, &outString, &outSize);  
 *outString = 0;  
 
 return cloneString(buffer);
 }