987241ea99c99b93aea51bb63bdf579f927e9d2b
kent
  Wed Oct 7 13:46:09 2015 -0700
Fixing copyright on some old essentially public domain files.

diff --git src/inc/snof.h src/inc/snof.h
index dfeec55..3d29f5b 100644
--- src/inc/snof.h
+++ src/inc/snof.h
@@ -1,27 +1,24 @@
-/*****************************************************************************
- * 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) *
- *****************************************************************************/
 /* snof.h - Sorted Name Offset File - stuff to handle a simple
  * indexed file.
  *
  * This accesses a file of name/offset pairs that are sorted by
  * name.  Does a binary search of file to find the offset given name.
  * Most typically this is used to do a quick lookup given an index file. 
- */ 
+ *
+ * This file is copyright 2000 Jim Kent, but license is hereby
+ * granted for all use - public, private or commercial. */
 
 struct snof
 /* Sorted Name Offset File structure.  Get one from snofOpen.  Use
  * with snofFindOffset.  Finish up with snofClose. */
     {
     FILE *file;
     int maxNameSize;
     int itemSize;
     int headSize;
     int endIx;
     char *first;
     char *last;
     char *less;
     char *mid;
     char *more;