ed6faffdb401ee2cf58b4f796a6b8ee8e75c7577 kent Tue May 27 10:45:12 2014 -0700 Adding spacing for readability around some copyrights notices that needed it. diff --git src/lib/xenshow.c src/lib/xenshow.c index 8b1bc08..c776c72 100644 --- src/lib/xenshow.c +++ src/lib/xenshow.c @@ -1,19 +1,20 @@ /* xenshow - show a cross-species alignment. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ + #include "common.h" #include "nt4.h" #include "xenalign.h" static void printMatchers(char *a, char *b, int lineSize, FILE *f) /* Print '|' where a[i] and b[i] match, ' ' where they don't */ { int i; for (i=0; i<lineSize; ++i) { char c = ((a[i] == b[i]) ? '|' : ' '); fputc(c, f); } }