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

/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dgzio.c352 gzread returns the number of bytes actually read (0 for end of file).
354 int ZEXPORT gzread (file, buf, len) function
453 return gzread(file, &c, 1) == 1 ? c : -1;
474 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
652 Sets the starting position for the next gzread or gzwrite on the given
730 size = gzread(file, s->outbuf, (uInt)size);
763 Returns the starting position for the next gzread or gzwrite on the

Completed in 525 milliseconds