Searched defs:gzopen (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/boot/lib/libz/
H A Dgzlib.c271 gzFile ZEXPORT gzopen(path, mode) function
H A Dzlib.h1227 ZEXTERN gzFile ZEXPORT gzopen OF((const char *path, const char *mode));
1246 streams in a file. The append function of gzopen() can be used to create
1248 appending, gzopen does not test whether the file begins with a gzip stream,
1249 nor does it look for the end of the gzip streams to begin appending. gzopen
1252 gzopen can be used to read a file which is not in gzip format; in this
1257 gzopen returns NULL if the file could not be opened, if there was
1260 errno can be checked to determine if the reason gzopen failed was that the
1268 has been previously opened with fopen). The mode parameter is as in gzopen.
1291 gzopen() or gzdopen(), and before any other calls that read or write the
1406 yet. If gzungetc is used immediately after gzopen o
1709 # define gzopen macro
[all...]
H A Dzconf.h75 # define gzopen z_gzopen macro
/illumos-gate/usr/src/boot/lib/libz/test/
H A Dminigzip.c178 gzFile gzopen OF((const char *, const char *));
182 gzFile gzopen(path, mode) function
482 out = gzopen(outfile, mode);
484 fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
529 in = gzopen(infile, "rb");
531 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
623 file = gzopen(*argv, "rb");
625 fprintf(stderr, "%s: can't gzopen %s\n", prog, *argv);

Completed in 53 milliseconds