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/lib/rangeTreeFile.c src/hg/lib/rangeTreeFile.c index 02b07d8..36d0ff9 100644 --- src/hg/lib/rangeTreeFile.c +++ src/hg/lib/rangeTreeFile.c @@ -1,24 +1,27 @@ /* rangeTree - This module is a way of keeping track of * non-overlapping ranges (half-open intervals). It is * based on the self-balancing rbTree code. Use it in * place of a bitmap when the total number of ranges * is significantly smaller than the number of bits would * be. * Beware the several static/global variables which can be * changed by various function calls. */ +/* Copyright (C) 2014 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + #include "common.h" #include "limits.h" #include "localmem.h" #include "rangeTree.h" #include "rangeTreeFile.h" struct range rangeReadOne(FILE *f, boolean isSwapped) /* Returns a single range from the file */ { struct range r = {NULL, 0, 0, NULL}; r.start = readBits32(f, isSwapped); r.end = r.start + readBits32(f, isSwapped); return r; }