---------------------------------------------------------------------------
| 1237 | } |
| 1238 | //--------------------------------------------------------------------------- |
| 1239 | void SetBit(BYTE * data, int bit, bool set) |
| 1240 | { |
| 1241 | if( set ) data[bit/8] |= (BYTE)(1<<(bit%8)); |
| 1242 | else data[bit/8] &= ~(BYTE)(1<<(bit%8)); |
| 1243 | } |
| 1244 | //--------------------------------------------------------------------------- |
| 1245 | bool GetBit(BYTE * data, int bit) |
| 1246 | { |
nothing calls this directly
no outgoing calls
no test coverage detected