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/transMapStuff.c src/hg/lib/transMapStuff.c index 39bc3a2..4bc9d45 100644 --- src/hg/lib/transMapStuff.c +++ src/hg/lib/transMapStuff.c @@ -1,17 +1,20 @@ /* transMapStuff - common definitions and functions for supporting transMap * tracks in the browser CGIs */ + +/* Copyright (C) 2014 The Regents of the University of California + * See README in this or parent directory for licensing information. */ #include "common.h" #include "transMapStuff.h" #include "trackDb.h" #include "hdb.h" char *transMapIdToAcc(char *id) /* remove all unique suffixes (starting with last `-') from any TransMap * id. WARNING: static return */ { static char acc[128]; safecpy(acc, sizeof(acc), id); char *dash = strrchr(acc, '-'); if (dash != NULL) *dash = '\0'; return acc;