Lines Matching defs:blast
0 /* blast.c
3 * For conditions of distribution and use, see copyright notice in blast.h
6 * blast.c decompresses data compressed by the PKWare Compression Library.
8 * the PKWare library, hence the name "blast".
28 #include "blast.h" /* prototype for blast() */
376 /* See comments in blast.h */
377 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow)
408 /* Example of how to use blast() */
433 ret = blast(inf, stdin, outf, stdout);
434 if (ret != 0) fprintf(stderr, "blast error: %d\n", ret);
439 if (n) fprintf(stderr, "blast warning: %d unused bytes of input\n", n);
441 /* return blast() error code */