Home
last modified time | relevance | path

Searched refs:gzungetc (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/
H A Dzconf.h100 # define gzungetc z_gzungetc
97 # define gzungetc z_gzungetc global() macro
H A Dzlib.h1523 ZEXTERN int ZEXPORT gzungetc(int c, gzFile file);
1527 gzungetc() returns the character pushed, or -1 on failure. gzungetc() will
1529 yet. If gzungetc is used immediately after gzopen or gzdopen, at least the
/openbsd-src/sys/lib/libz/
H A Dzconf.h99 # define gzungetc z_gzungetc
98 # define gzungetc z_gzungetc global() macro
H A Dzlib.h1538 ZEXTERN int ZEXPORT gzungetc(int c, gzFile file);
1542 gzungetc() returns the character pushed, or -1 on failure. gzungetc() will
1544 yet. If gzungetc is used immediately after gzopen or gzdopen, at least the
/openbsd-src/lib/libz/
H A Dzconf.h99 # define gzungetc z_gzungetc
98 # define gzungetc z_gzungetc global() macro
H A Dgzread.c439 int ZEXPORT gzungetc(int c, gzFile file) { in gzungetc() function
H A Dzlib.h1538 ZEXTERN int ZEXPORT gzungetc(int c, gzFile file);
1542 gzungetc() returns the character pushed, or -1 on failure. gzungetc() will
1544 yet. If gzungetc is used immediately after gzopen or gzdopen, at least the
H A DChangeLog20 - Fix bug when gzungetc() is used immediately after gzopen()
596 - Add error message for no more room for gzungetc()
803 - Fix crc check bug in gzread() after gzungetc() [Heiner]
1027 - Fix silly error in gzungetc() implementation [Vollant]
1065 - Add gzungetc() function
/openbsd-src/regress/lib/libz/
H A Dexample.c140 if (gzungetc(' ', file) != ' ') { in test_gzio()