taglinefilesource code
get_byte218lib/inflate.c#define NEXTBYTE()  (uch)get_byte()
get_byte1067lib/inflate.cmagic[0] = (unsigned char)get_byte();
get_byte1068lib/inflate.cmagic[1] = (unsigned char)get_byte();
get_byte1069lib/inflate.cmethod = (unsigned char)get_byte();
get_byte1083lib/inflate.cflags  = (uch)get_byte();
get_byte1096lib/inflate.c(ulg)get_byte();  /* Get timestamp */
get_byte1097lib/inflate.c((ulg)get_byte()) << 8;
get_byte1098lib/inflate.c((ulg)get_byte()) << 16;
get_byte1099lib/inflate.c((ulg)get_byte()) << 24;
get_byte1101lib/inflate.c(void)get_byte();  /* Ignore extra flags for the moment */
get_byte1102lib/inflate.c(void)get_byte();  /* Ignore OS type for the moment */
get_byte1105lib/inflate.cunsigned len = (unsigned)get_byte();
get_byte1106lib/inflate.clen |= ((unsigned)get_byte())<<8;
get_byte1107lib/inflate.cwhile (len--) (void)get_byte();
get_byte1113lib/inflate.cwhile (get_byte() != 0) /* null */ ;
get_byte1118lib/inflate.cwhile (get_byte() != 0) /* null */ ;
get_byte1145lib/inflate.corig_crc = (ulg) get_byte();
get_byte1146lib/inflate.corig_crc |= (ulg) get_byte() << 8;
get_byte1147lib/inflate.corig_crc |= (ulg) get_byte() << 16;
get_byte1148lib/inflate.corig_crc |= (ulg) get_byte() << 24;
get_byte1150lib/inflate.corig_len = (ulg) get_byte();
get_byte1151lib/inflate.corig_len |= (ulg) get_byte() << 8;
get_byte1152lib/inflate.corig_len |= (ulg) get_byte() << 16;
get_byte1153lib/inflate.corig_len |= (ulg) get_byte() << 24;