()
| 132 | fileout; |
| 133 | |
| 134 | function readByte(){ |
| 135 | bits+=8; |
| 136 | if (bytepos<bA.length){ |
| 137 | //if (debug) |
| 138 | // document.write(bytepos+": "+bA[bytepos]+"<br>"); |
| 139 | // util.debug(bA[bytepos++].toString(16)) |
| 140 | // return String.fromCharCode(bA[bytepos++]); |
| 141 | return bA[bytepos++]; |
| 142 | } else |
| 143 | return -1; |
| 144 | }; |
| 145 | |
| 146 | function byteAlign(){ |
| 147 | bb = 1; |
no outgoing calls
no test coverage detected