ComponentAce.Compression.Libs.ZLib.ZStream.inflateSync C# (CSharp) Method

inflateSync() public method

Skips invalid compressed data until a full flush point (see the description of deflate with Z_FULL_FLUSH) can be found, or until all available input is skipped. No output is provided.
public inflateSync ( ) : int
return int
		public int inflateSync()
		{
			if (_istate == null)
				return (int)ZLibResultCode.Z_STREAM_ERROR;
			return _istate.inflateSync(this);
		}