/* catUncomment - Concatenate input removing lines that start with '#'. */ #include "common.h" #include "linefile.h" void usage() /* Explain usage and exit. */ { errAbort( "catUncomment - Concatenate input removing lines that start with '#'\n" "Output goes to stdout\n" "usage:\n" " catUncomment file(s)\n"); } void catUncomment(int inCount, char *inNames[]) /* catUncomment - Concatenate input removing lines that start with '#'. */ { struct lineFile *lf; char *fileName; char *line; int i, lineSize; for (i=0; i