Home | History | Annotate | Download | only in ZLib

Lines Matching refs:gzgetc

1510 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1512 Reads one byte from the compressed file. gzgetc returns this byte or -1
1810 /* gzgetc() macro and its supporting function and exposed data structure. Note
1812 * This abbreviated structure exposes just enough for the gzgetc() macro. The
1815 * only be used by the gzgetc() macro. You have been warned.
1826 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : (gzgetc)(g))
1828 # define gzgetc(g) \
1829 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : (gzgetc)(g))