987241ea99c99b93aea51bb63bdf579f927e9d2b kent Wed Oct 7 13:46:09 2015 -0700 Fixing copyright on some old essentially public domain files. diff --git src/inc/fof.h src/inc/fof.h index af2d27a..6f744d9 100644 --- src/inc/fof.h +++ src/inc/fof.h @@ -1,22 +1,21 @@ -/***************************************************************************** - * 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) * - *****************************************************************************/ /* fof.h - Manages a fof-type index file. This index refers - * to records in multiple external files. */ + * to records in multiple external files. + * + * This file is copyright 2000 Jim Kent, but license is hereby + * granted for all use - public, private or commercial. */ + struct fofPos /* This holds the result of a FOF search. */ { FILE *f; /* File. */ bits32 offset; /* Offset within file. */ bits32 size; /* Size within file. */ int indexIx; /* Position within index. */ char *fileName; /* File name. */ }; struct fof *fofOpen(char *fofName, char *fofDir); /* Open up the named fof. fofDir may be NULL. It should include * trailing '/' if non-null. */