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/utils/wigAsciiToBinary/wigAsciiToBinary.c src/utils/wigAsciiToBinary/wigAsciiToBinary.c
index cc2fc41..b30cc0a 100644
--- src/utils/wigAsciiToBinary/wigAsciiToBinary.c
+++ src/utils/wigAsciiToBinary/wigAsciiToBinary.c
@@ -1,15 +1,18 @@
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 /* wigAsciiToBinary - convert ascii Wiggle data to binary file
  *	plus, produces file read for load into database
  *
  *	The ascii data file is simply two columns, white space separated:
  *	first column: offset within chromosome, 1 relative closed end
  *	second column: any real data value
  *
  *	Each data block will have its own specific scale computed
  *
  *	This first pass will assume the scores are specified for
  *	a single nucleotide base.  If the offset sequence has
  *	missing data in it, the missing data will be set to the
  *	"WIG_NO_DATA" indication.  (WIG_NO_DATA == 128)
  *
  *	The binary data file is simply one unsigned char value per byte.