========================================================================= * Put a short in the pending buffer. The 16-bit value is put in MSB order. * IN assertion: the stream state is correct and there is enough room in * pending_buf. */
(s, b)
| 516 | * pending_buf. |
| 517 | */ |
| 518 | local void putShortMSB (s, b) |
| 519 | deflate_state *s; |
| 520 | uInt b; |
| 521 | { |
| 522 | put_byte(s, (Byte)(b >> 8)); |
| 523 | put_byte(s, (Byte)(b & 0xff)); |
| 524 | } |
| 525 | |
| 526 | /* ========================================================================= |
| 527 | * Flush as much pending output as possible. All deflate() output goes |