RTEMS CPU Kit with SuperCore  4.11.2
Macros | Functions
gzread.c File Reference
#include "gzguts.h"
Include dependency graph for gzread.c:

Macros

#define NEXT()
 

Functions

local int gz_load OF ((gz_statep, unsigned char *, unsigned, unsigned *))
 
local int gz_avail OF ((gz_statep))
 
local int gz_next4 OF ((gz_statep, unsigned long *))
 
local int gz_skip OF ((gz_statep, z_off64_t))
 
local int gz_load (gz_statep state, unsigned char *buf, unsigned len, unsigned *have)
 
local int gz_avail (gz_statep state)
 
local int gz_next4 (gz_statep state, unsigned long *ret)
 
local int gz_head (gz_statep state)
 
local int gz_decomp (gz_statep state)
 
local int gz_make (gz_statep state)
 
local int gz_skip (gz_statep state, z_off64_t len)
 
int ZEXPORT gzread (gzFile file, voidp buf, unsigned len)
 
int ZEXPORT gzgetc (gzFile file)
 
int ZEXPORT gzungetc (int c, gzFile file)
 
char *ZEXPORT gzgets (gzFile file, char *buf, int len)
 
int ZEXPORT gzdirect (gzFile file)
 
int ZEXPORT gzclose_r (gzFile file)
 

Macro Definition Documentation

◆ NEXT

#define NEXT ( )
Value:
((strm->avail_in == 0 && gz_avail(state) == -1) ? -1 : \
(strm->avail_in == 0 ? -1 : \
(strm->avail_in--, *(strm->next_in)++)))