---------------------------------------------------------------------------
| 1243 | } |
| 1244 | //--------------------------------------------------------------------------- |
| 1245 | bool GetBit(BYTE * data, int bit) |
| 1246 | { |
| 1247 | return data[bit/8] & (BYTE)(1<<(bit%8)); |
| 1248 | } |
| 1249 | //--------------------------------------------------------------------------- |
| 1250 | BYTE HexVal(char hex) |
| 1251 | { |
nothing calls this directly
no outgoing calls
no test coverage detected