annotate src/zlib-1.2.7/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 8a15ff55d9af
children
rev   line source
cannam@89 1 /* gzclose.c -- zlib gzclose() function
cannam@89 2 * Copyright (C) 2004, 2010 Mark Adler
cannam@89 3 * For conditions of distribution and use, see copyright notice in zlib.h
cannam@89 4 */
cannam@89 5
cannam@89 6 #include "gzguts.h"
cannam@89 7
cannam@89 8 /* gzclose() is in a separate file so that it is linked in only if it is used.
cannam@89 9 That way the other gzclose functions can be used instead to avoid linking in
cannam@89 10 unneeded compression or decompression routines. */
cannam@89 11 int ZEXPORT gzclose(file)
cannam@89 12 gzFile file;
cannam@89 13 {
cannam@89 14 #ifndef NO_GZCOMPRESS
cannam@89 15 gz_statep state;
cannam@89 16
cannam@89 17 if (file == NULL)
cannam@89 18 return Z_STREAM_ERROR;
cannam@89 19 state = (gz_statep)file;
cannam@89 20
cannam@89 21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
cannam@89 22 #else
cannam@89 23 return gzclose_r(file);
cannam@89 24 #endif
cannam@89 25 }