Home | History | Annotate | Download | only in zlib_v128

Lines Matching defs:gzgetc

1460 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1462 Reads one byte from the compressed file. gzgetc returns this byte or -1
1732 /* gzgetc() macro and its supporting function and exposed data structure. Note
1734 * This abbreviated structure exposes just enough for the gzgetc() macro. The
1737 * only be used by the gzgetc() macro. You have been warned.
1748 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))
1750 # define gzgetc(g) \
1751 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : gzgetc(g))