Searched refs:gzseek (Results 1 - 3 of 3) sorted by relevance
/ast/src/lib/libz/ |
H A D | example.c | 112 gzseek(file, 1L, SEEK_CUR); /* add one zero byte */ 133 pos = gzseek(file, -8L, SEEK_CUR); 135 fprintf(stderr, "gzseek error, pos=%ld, gztell=%ld\n", 152 fprintf(stderr, "gzgets err after gzseek: %s\n", gzerror(file, &err)); 156 fprintf(stderr, "bad gzgets after gzseek\n"); 159 printf("gzgets() after gzseek: %s\n", (char*)uncompr);
|
H A D | zlib.h | 1170 character will be discarded if the stream is repositioned with gzseek() 1210 ZEXTERN z_off_t ZEXPORT gzseek OF((gzFile file, 1219 supported; gzseek then compresses a sequence of zeroes up to the new 1222 gzseek returns the resulting offset location as measured in bytes from 1232 gzrewind(file) is equivalent to (int)gzseek(file, 0L, SEEK_SET) 1241 gztell(file) is equivalent to gzseek(file, 0L, SEEK_CUR)
|
H A D | gzio.c | 907 gzseek returns the resulting offset location as measured in bytes from 910 In this version of the library, gzseek can be extremely slow. 912 z_off_t ZEXPORT gzseek (file, offset, whence) function 1044 return gzseek(file, 0L, SEEK_CUR);
|
Completed in 1160 milliseconds