4898794edd81be5285ea6e544acbedeaeb31bf78 max Tue Nov 23 08:10:57 2021 -0800 Fixing pointers to README file for license in all source code files. refs #27614 diff --git src/utils/htmlPics/htmlPics.c src/utils/htmlPics/htmlPics.c index b3fc217..53f8cd8 100644 --- src/utils/htmlPics/htmlPics.c +++ src/utils/htmlPics/htmlPics.c @@ -1,33 +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. */ + * See kent/LICENSE or http://genome.ucsc.edu/license/ 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; }