| 292 | /*************** helpers *****************************/ |
| 293 | |
| 294 | inline unsigned int BitsToBytes(unsigned int bitCount) |
| 295 | { |
| 296 | return ((bitCount+7)/(8)); |
| 297 | } |
| 298 | |
| 299 | inline unsigned int BytesToWords(unsigned int byteCount) |
| 300 | { |
no outgoing calls
no test coverage detected