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