| 304 | // ------------------------------------------------ |
| 305 | |
| 306 | void Int::SetByte(int n,unsigned char byte) { |
| 307 | |
| 308 | unsigned char *bbPtr = (unsigned char *)bits; |
| 309 | bbPtr[n] = byte; |
| 310 | |
| 311 | } |
| 312 | |
| 313 | // ------------------------------------------------ |
| 314 |
no outgoing calls
no test coverage detected