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/txCommon.c src/hg/lib/txCommon.c index 9b587c8..ae3825a 100644 --- src/hg/lib/txCommon.c +++ src/hg/lib/txCommon.c @@ -1,18 +1,21 @@ /* txCommon - contains routines shared by various programs in * the txXxx family (which is used to make the UCSC gene set */ +/* Copyright (C) 2014 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + #include "common.h" #include "linefile.h" #include "hash.h" #include "txCommon.h" char *txAccFromTempName(char *tempName) /* Given name in this.that.acc.version format, return * just acc.version. */ { char *s = tempName + strlen(tempName); int periodCount = 0; while (s > tempName && periodCount < 2) { char c = *(--s);