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/raToStruct.c src/lib/raToStruct.c index 7f108ec..b1d8468 100644 --- src/lib/raToStruct.c +++ src/lib/raToStruct.c @@ -1,20 +1,20 @@ /* raToStruct - stuff to help read ra files into C structures. Works with raToStructGen * which makes parsers based on .as files. */ /* Copyright (C) 2013 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 "hash.h" #include "linefile.h" #include "raToStruct.h" #include "obscure.h" struct raToStructReader *raToStructReaderNew(char *name, int fieldCount, char **fields, int requiredFieldCount, char **requiredFields) /* Create a helper object for parsing an ra file into a C structure. This structure will * contain */ { struct raToStructReader *reader; AllocVar(reader); reader->name = cloneString(name);