Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 180 of file bzip2recover.c.
Referenced by bsPutUChar(), bsPutUInt32(), and main().
{ if (bs->buffLive == 8) { Int32 retVal = putc ( (UChar) bs->buffer, bs->handle ); if (retVal == EOF) writeError(); bytesOut++; bs->buffLive = 1; bs->buffer = bit & 0x1; } else { bs->buffer = ( (bs->buffer << 1) | (bit & 0x1) ); bs->buffLive++; }; }