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/xmlToSql/elStat.h src/hg/xmlToSql/elStat.h index 172e229..a433ec6 100644 --- src/hg/xmlToSql/elStat.h +++ src/hg/xmlToSql/elStat.h @@ -1,32 +1,32 @@ /* Parse a statistics file from autoDtd. */ /* Copyright (C) 2005 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 ELSTAT_H #define ELSTAT_H struct attStat /* Statistics on an xml attribute. */ { struct attStat *next; char *name; /* Attribute name. */ int maxLen; /* Maximum length. */ char *type; /* int/float/string/none */ int count; /* Number of times attribute seen. */ int uniqCount; /* Number of unique values of attribute. */ }; struct elStat /* Statistics on an xml element. */ { struct elStat *next; /* Next in list. */ char *name; /* Element name. */ int count; /* Number of times element seen. */ struct attStat *attList; /* List of attributes. */ }; struct elStat *elStatLoadAll(char *fileName); /* Read all elStats from file. */ #endif /* ELSTAT_H */