/* padFile - Add a bunch of zeroes to end of file. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "cheapcgi.h" void usage() /* Explain usage and exit. */ { errAbort( "padFile - Add a bunch of zeroes to end of file\n" "usage:\n" " padFile file count\n" "options:\n" " -xxx=XXX\n" ); } void padFile(char *file, int count) /* padFile - Add a bunch of zeroes to end of file. */ { int i; FILE *f = mustOpen(file, "a"); for (i=0; i