Searched refs:gzgetc (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/sys/contrib/zlib/
H A Dzlib.h1511 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1513 Reads one byte from the compressed file. gzgetc returns this byte or -1
1811 /* gzgetc() macro and its supporting function and exposed data structure. Note
1813 * This abbreviated structure exposes just enough for the gzgetc() macro. The
1816 * only be used by the gzgetc() macro. You have been warned.
1827 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : (gzgetc)(g))
1829 # define gzgetc(g) \ macro
1830 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : (gzgetc)(g))
H A Dgzread.c448 # undef gzgetc macro
450 int ZEXPORT gzgetc(file) function
482 return gzgetc(file);
H A Dzconf.h77 # define gzgetc z_gzgetc macro
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h1159 ZEXTERN int ZEXPORT gzgetc OF((gzFile file));
1161 Reads one byte from the compressed file. gzgetc returns this byte
/freebsd-11-stable/sys/contrib/zlib/test/
H A Dexample.c169 if (gzgetc(file) != ' ') {
170 fprintf(stderr, "gzgetc error\n");

Completed in 71 milliseconds