Geant4-11
Functions
gzclose.c File Reference
#include "gzguts.h"

Go to the source code of this file.

Functions

int ZEXPORT gzclose (gzFile file)
 

Function Documentation

◆ gzclose()

int ZEXPORT gzclose ( gzFile  file)

Definition at line 11 of file gzclose.c.

13{
14#ifndef NO_GZCOMPRESS
15 gz_statep state;
16
17 if (file == NULL)
18 return Z_STREAM_ERROR;
19 state = (gz_statep)file;
20
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
22#else
23 return gzclose_r(file);
24#endif
25}
gz_state FAR * gz_statep
Definition: gzguts.h:202
#define GZ_READ
Definition: gzguts.h:160
int ZEXPORT gzclose_r(gzFile file)
Definition: gzread.c:627
int ZEXPORT gzclose_w(gzFile file)
Definition: gzwrite.c:633
#define Z_STREAM_ERROR
Definition: zlib.h:181

References geant4_check_module_cycles::file, GZ_READ, gzclose_r(), gzclose_w(), and Z_STREAM_ERROR.