annotate src/zlib-1.2.8/gzclose.c @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 5b4145a0d408
children
rev   line source
cannam@128 1 /* gzclose.c -- zlib gzclose() function
cannam@128 2 * Copyright (C) 2004, 2010 Mark Adler
cannam@128 3 * For conditions of distribution and use, see copyright notice in zlib.h
cannam@128 4 */
cannam@128 5
cannam@128 6 #include "gzguts.h"
cannam@128 7
cannam@128 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
cannam@128 9 That way the other gzclose functions can be used instead to avoid linking in
cannam@128 10 unneeded compression or decompression routines. */
cannam@128 11 int ZEXPORT gzclose(file)
cannam@128 12 gzFile file;
cannam@128 13 {
cannam@128 14 #ifndef NO_GZCOMPRESS
cannam@128 15 gz_statep state;
cannam@128 16
cannam@128 17 if (file == NULL)
cannam@128 18 return Z_STREAM_ERROR;
cannam@128 19 state = (gz_statep)file;
cannam@128 20
cannam@128 21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
cannam@128 22 #else
cannam@128 23 return gzclose_r(file);
cannam@128 24 #endif
cannam@128 25 }