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

  /external/zlib/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
36 /* Definitions for input/output functions passed to blast(). See below for
41 int blast(blast_in infun, void *inhow, blast_out outfun, void *outhow);
43 * On success, the return value of blast() is zero. If there is an error in
50 * available bytes there. If infun() returns zero, then blast() returns with
51 * an input error. (blast() only asks for input if it needs it.) inhow is for
55 * to be written are buf[0..len-1]. If err is not zero, then blast() returns
69 * 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".
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) function
408 /* Example of how to use blast() */
433 ret = blast(inf, stdin, outf, stdout)
    [all...]

Completed in 115 milliseconds