X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=org.simantics.fmil.core%2Fnative%2FFMILibrary%2FThirdParty%2FZlib%2Fzlib-1.2.6%2Fgzclose.c;fp=org.simantics.fmil.core%2Fnative%2FFMILibrary%2FThirdParty%2FZlib%2Fzlib-1.2.6%2Fgzclose.c;h=caeb99a3177f477d622870255a00ac2b72f10cad;hb=4bed8078f3f6d15b8539d7357b8815f8bfeec2c4;hp=0000000000000000000000000000000000000000;hpb=87cc423aefd98832c6c8d0979afc21551f8ceca3;p=simantics%2Ffmil.git diff --git a/org.simantics.fmil.core/native/FMILibrary/ThirdParty/Zlib/zlib-1.2.6/gzclose.c b/org.simantics.fmil.core/native/FMILibrary/ThirdParty/Zlib/zlib-1.2.6/gzclose.c new file mode 100644 index 0000000..caeb99a --- /dev/null +++ b/org.simantics.fmil.core/native/FMILibrary/ThirdParty/Zlib/zlib-1.2.6/gzclose.c @@ -0,0 +1,25 @@ +/* gzclose.c -- zlib gzclose() function + * Copyright (C) 2004, 2010 Mark Adler + * For conditions of distribution and use, see copyright notice in zlib.h + */ + +#include "gzguts.h" + +/* gzclose() is in a separate file so that it is linked in only if it is used. + That way the other gzclose functions can be used instead to avoid linking in + unneeded compression or decompression routines. */ +int ZEXPORT gzclose(file) + gzFile file; +{ +#ifndef NO_GZCOMPRESS + gz_statep state; + + if (file == NULL) + return Z_STREAM_ERROR; + state = (gz_statep)file; + + return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file); +#else + return gzclose_r(file); +#endif +}