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

/ast/src/lib/libz/
H A Dgzio.c482 gzread returns the number of bytes actually read (0 for end of file).
484 int ZEXPORT gzread (file, buf, len) function
615 return gzread(file, &c, 1) == 1 ? c : -1;
655 while (--len > 0 && gzread(file, buf, 1) == 1 && *buf++ != '\n') ;
905 Sets the starting position for the next gzread or gzwrite on the given
992 size = gzread(file, s->outbuf, (uInt)size);
1037 Returns the starting position for the next gzread or gzwrite on the

Completed in 9 milliseconds