1*0Sstevel@tonic-gate /* 2*0Sstevel@tonic-gate * Copyright 2003 Sun Microsystems, Inc. All rights reserved. 3*0Sstevel@tonic-gate * Use is subject to license terms. 4*0Sstevel@tonic-gate */ 5*0Sstevel@tonic-gate 6*0Sstevel@tonic-gate /* 7*0Sstevel@tonic-gate * inffast.h -- header to use inffast.c 8*0Sstevel@tonic-gate * Copyright (C) 1995-1998 Mark Adler 9*0Sstevel@tonic-gate * For conditions of distribution and use, see copyright notice in zlib.h 10*0Sstevel@tonic-gate */ 11*0Sstevel@tonic-gate 12*0Sstevel@tonic-gate #ifndef _INFFAST_H 13*0Sstevel@tonic-gate #define _INFFAST_H 14*0Sstevel@tonic-gate 15*0Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 16*0Sstevel@tonic-gate 17*0Sstevel@tonic-gate #ifdef __cplusplus 18*0Sstevel@tonic-gate extern "C" { 19*0Sstevel@tonic-gate #endif 20*0Sstevel@tonic-gate 21*0Sstevel@tonic-gate extern int inflate_fast(uInt, uInt, inflate_huft *, inflate_huft *, 22*0Sstevel@tonic-gate inflate_blocks_statef *, z_streamp); 23*0Sstevel@tonic-gate 24*0Sstevel@tonic-gate #ifdef __cplusplus 25*0Sstevel@tonic-gate } 26*0Sstevel@tonic-gate #endif 27*0Sstevel@tonic-gate 28*0Sstevel@tonic-gate #endif /* _INFFAST_H */ 29