--HG-- branch : refac-jit rename : sourcepawn/jit/x86/msvc8/jit-x86.sln => sourcepawn/jit/msvc8/jit-x86.sln rename : sourcepawn/jit/x86/msvc8/jit-x86.vcproj => sourcepawn/jit/msvc8/jit-x86.vcproj rename : core/vm/sp_vm_basecontext.cpp => sourcepawn/jit/sp_vm_basecontext.cpp rename : core/vm/sp_vm_basecontext.h => sourcepawn/jit/sp_vm_basecontext.h rename : core/vm/sp_vm_engine.cpp => sourcepawn/jit/sp_vm_engine.cpp rename : core/vm/sp_vm_engine.h => sourcepawn/jit/sp_vm_engine.h rename : core/vm/sp_vm_function.cpp => sourcepawn/jit/sp_vm_function.cpp rename : core/vm/sp_vm_function.h => sourcepawn/jit/sp_vm_function.h rename : core/zlib/adler32.c => sourcepawn/jit/zlib/adler32.c rename : core/zlib/compress.c => sourcepawn/jit/zlib/compress.c rename : core/zlib/crc32.c => sourcepawn/jit/zlib/crc32.c rename : core/zlib/crc32.h => sourcepawn/jit/zlib/crc32.h rename : core/zlib/deflate.c => sourcepawn/jit/zlib/deflate.c rename : core/zlib/deflate.h => sourcepawn/jit/zlib/deflate.h rename : core/zlib/gzio.c => sourcepawn/jit/zlib/gzio.c rename : core/zlib/infback.c => sourcepawn/jit/zlib/infback.c rename : core/zlib/inffast.c => sourcepawn/jit/zlib/inffast.c rename : core/zlib/inffast.h => sourcepawn/jit/zlib/inffast.h rename : core/zlib/inffixed.h => sourcepawn/jit/zlib/inffixed.h rename : core/zlib/inflate.c => sourcepawn/jit/zlib/inflate.c rename : core/zlib/inflate.h => sourcepawn/jit/zlib/inflate.h rename : core/zlib/inftrees.c => sourcepawn/jit/zlib/inftrees.c rename : core/zlib/inftrees.h => sourcepawn/jit/zlib/inftrees.h rename : core/zlib/trees.c => sourcepawn/jit/zlib/trees.c rename : core/zlib/trees.h => sourcepawn/jit/zlib/trees.h rename : core/zlib/uncompr.c => sourcepawn/jit/zlib/uncompr.c rename : core/zlib/zconf.h => sourcepawn/jit/zlib/zconf.h rename : core/zlib/zlib.h => sourcepawn/jit/zlib/zlib.h rename : core/zlib/zutil.c => sourcepawn/jit/zlib/zutil.c rename : core/zlib/zutil.h => sourcepawn/jit/zlib/zutil.h extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/branches/refac-jit%402370
12 lines
418 B
C
12 lines
418 B
C
/* inffast.h -- header to use inffast.c
|
|
* Copyright (C) 1995-2003 Mark Adler
|
|
* For conditions of distribution and use, see copyright notice in zlib.h
|
|
*/
|
|
|
|
/* WARNING: this file should *not* be used by applications. It is
|
|
part of the implementation of the compression library and is
|
|
subject to change. Applications should only use zlib.h.
|
|
*/
|
|
|
|
void inflate_fast OF((z_streamp strm, unsigned start));
|