========================================================================= * 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. */
| 633 | * pending_buf. |
| 634 | */ |
| 635 | local void putShortMSB (deflate_state *s, uInt b) |
| 636 | { |
| 637 | put_byte(s, (Byte)(b >> 8)); |
| 638 | put_byte(s, (Byte)(b & 0xff)); |
| 639 | } |
| 640 | |
| 641 | /* ========================================================================= |
| 642 | * Flush as much pending output as possible. All deflate() output goes |