Staging
v0.5.1
https://github.com/python/cpython
Revision c5e62796f9fbcfa4a5c172c7dd870102fd959d6b authored by Gregory P. Smith on 01 March 2010, 03:11:09 UTC, committed by Gregory P. Smith on 01 March 2010, 03:11:09 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78536 | gregory.p.smith | 2010-02-28 19:09:19 -0800 (Sun, 28 Feb 2010) | 2 lines

  Cleanup the test added in r78517 based on Ezio Melotti's feedback.
........
1 parent c234a3c
Raw File
Tip revision: c5e62796f9fbcfa4a5c172c7dd870102fd959d6b authored by Gregory P. Smith on 01 March 2010, 03:11:09 UTC
Merged revisions 78536 via svnmerge from
Tip revision: c5e6279
inffast.h
/* 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));
back to top