Home | History | Annotate | Download | only in zlib

Lines Matching refs:gzgetc

1391 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1393 Reads one byte from the compressed file. gzgetc returns this byte or -1
1663 /* gzgetc() macro and its supporting function and exposed data structure. Note
1665 * This abbreviated structure exposes just enough for the gzgetc() macro. The
1668 * only be used by the gzgetc() macro. You have been warned.
1679 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
1681 # define gzgetc(g) \
1682 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))