987241ea99c99b93aea51bb63bdf579f927e9d2b kent Wed Oct 7 13:46:09 2015 -0700 Fixing copyright on some old essentially public domain files. diff --git src/inc/hgGene.h src/inc/hgGene.h index ba9752b..3031b7d 100644 --- src/inc/hgGene.h +++ src/inc/hgGene.h @@ -1,23 +1,22 @@ -/***************************************************************************** - * Copyright (C) 2000 Jim Kent. This source code may be freely used * - * for personal, academic, and non-profit purposes. Commercial use * - * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) * - *****************************************************************************/ /* hgGene.h was originally generated by the autoSql program, which also * generated hgGene.c and hgGene.sql. This header links the database and the RAM - * representation of objects. */ + * representation of objects. + * + * This file is copyright 2000 Jim Kent, but license is hereby + * granted for all use - public, private or commercial. */ + struct geneFinder /* A gene finding program. */ { struct geneFinder *next; /* Next in singly linked list. */ unsigned id; /* Unique ID */ char *name; /* Name of gene finder */ }; void geneFinderStaticLoad(char **row, struct geneFinder *ret); /* Load a row from geneFinder table into ret. The contents of ret will * be replaced at the next call to this function. */ struct geneFinder *geneFinderLoad(char **row); /* Load a geneFinder from row fetched with select * from geneFinder