e70152e44cc66cc599ff6b699eb8adc07f3e656a kent Sat May 24 21:09:34 2014 -0700 Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment. diff --git src/hg/xmlToSql/elStat.h src/hg/xmlToSql/elStat.h index 2b405d9..172e229 100644 --- src/hg/xmlToSql/elStat.h +++ src/hg/xmlToSql/elStat.h @@ -1,29 +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. */ + #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 */