/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
GZipStream.cs | 33 private static extern int gzgetc(IntPtr gzFile);
method in class:DotZLib.GZipStream 185 return gzgetc(_gzFile);
|
GZipStream.cs | 33 private static extern int gzgetc(IntPtr gzFile);
method in class:DotZLib.GZipStream 185 return gzgetc(_gzFile);
|
/src/common/dist/zlib/ |
gzread.c | 406 # undef gzgetc 408 int ZEXPORT gzgetc(gzFile file) { function in typeref:typename:int ZEXPORT 434 return gzgetc(file);
|
gzread.c | 406 # undef gzgetc 408 int ZEXPORT gzgetc(gzFile file) { function in typeref:typename:int ZEXPORT 434 return gzgetc(file);
|
zlib.h | 1516 ZEXTERN int ZEXPORT gzgetc(gzFile file); 1518 Read and decompress one byte from file. gzgetc returns this byte or -1 1834 /* gzgetc() macro and its supporting function and exposed data structure. Note 1836 * This abbreviated structure exposes just enough for the gzgetc() macro. The 1839 * only be used by the gzgetc() macro. You have been warned. 1850 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : (gzgetc)(g)) 1852 # define gzgetc(g) \ macro 1853 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : (gzgetc)(g))
|
zlib.h | 1516 ZEXTERN int ZEXPORT gzgetc(gzFile file); 1518 Read and decompress one byte from file. gzgetc returns this byte or -1 1834 /* gzgetc() macro and its supporting function and exposed data structure. Note 1836 * This abbreviated structure exposes just enough for the gzgetc() macro. The 1839 * only be used by the gzgetc() macro. You have been warned. 1850 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : (gzgetc)(g)) 1852 # define gzgetc(g) \ macro 1853 ((g)->have ? ((g)->have--, (g)->pos++, *((g)->next)++) : (gzgetc)(g))
|
zconf.h | 84 # define gzgetc z_gzgetc macro
|
zconf.h.in | 80 # define gzgetc z_gzgetc macro
|
zconf.h | 84 # define gzgetc z_gzgetc macro
|
zconf.h.in | 80 # define gzgetc z_gzgetc macro
|
/src/common/dist/zlib/contrib/ada/ |
zlib-thin.ads | 216 function gzgetc (file : gzFile) return Int; subprogspec 411 pragma Import (C, gzgetc, "gzgetc");
|
zlib-thin.ads | 216 function gzgetc (file : gzFile) return Int; subprogspec 411 pragma Import (C, gzgetc, "gzgetc");
|