HomeSort by relevance Sort by last modified time
    Searched refs:blast (Results 1 - 3 of 3) sorted by null

  /external/zlib/src/contrib/blast/
Makefile 0 blast: blast.c blast.h
2 cc -DTEST -o blast blast.c
4 test: blast
5 blast < test.pk | cmp - test.txt
8 rm -f blast blast.o
blast.h 0 /* blast.h -- interface for blast.c
26 * blast() decompresses the PKWare Data Compression Library (DCL) compressed
40 /* Definitions for input/output functions passed to blast(). See below for
45 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow);
47 * On success, the return value of blast() is zero. If there is an error in
54 * available bytes there. If infun() returns zero, then blast() returns with
55 * an input error. (blast() only asks for input if it needs it.) inhow is for
59 * to be written are buf[0..len-1]. If err is not zero, then blast() returns
73 * At the bottom of blast.c is an example program that uses blast() that can b
    [all...]
blast.c 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".
30 #include "blast.h" /* prototype for blast() */
378 /* See comments in blast.h */
379 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow) function
410 /* Example of how to use blast() */
435 ret = blast(inf, stdin, outf, stdout)
    [all...]

Completed in 175 milliseconds