diff options
Diffstat (limited to '')
-rw-r--r--[l---------] | inflateEnd.3 | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/inflateEnd.3 b/inflateEnd.3 index a4ababe..7ac4821 120000..100644 --- a/inflateEnd.3 +++ b/inflateEnd.3 @@ -1 +1,34 @@ -inflate.3 \ No newline at end of file +.Dd November 9, 2018 +.Dt INFLATEEND 3 +.Os +. +.Sh NAME +.Nm inflateEnd +.Nd free inflate stream +. +.Sh LIBRARY +.Lb libz +. +.Sh SYNOPSIS +.In zlib.h +.Ft int +.Fn inflateEnd "z_streamp strm" +. +.Sh DESCRIPTION +All dynamically allocated data structures +for this stream are feed. +This function discards any unprocessed input +and does not flush any pending output. +. +.Sh RETURN VALUES +.Fn inflateEnd +returns +.Dv Z_OK +if success, +or +.Dv Z_STREAM_ERROR +if the stream state was inconsistent. +. +.Sh SEE ALSO +.Xr inflate 3 , +.Xr inflateInit 3 |