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/htmlPics/htmlPics.c src/utils/htmlPics/htmlPics.c index 1e3cf83..b3fc217 100644 --- src/utils/htmlPics/htmlPics.c +++ src/utils/htmlPics/htmlPics.c @@ -1,30 +1,33 @@ /* Create a html file from a list of pictures in the command line. */ + +/* Copyright (C) 2011 The Regents of the University of California + * See README in this or parent directory for licensing information. */ #include "common.h" #include "htmshell.h" void usage() /* Print usage instructions and bail. */ { errAbort("htmlPics - create an html file from a list of pictures\n" "usage\n" " htmlPics picFile(s)\n" "The html will be printed to standard out."); } int main(int argc, char *argv[]) { int i; char *picName; if (argc < 2) usage(); htmStart(stdout, "Some Pics"); for (i=1; i<argc; ++i) { picName = argv[i]; printf("<IMG SRC=\"%s\">\n", picName); } htmEnd(stdout); return 0; }