(int base, int i)
| 493 | } |
| 494 | |
| 495 | void putInt(int base, int i) { |
| 496 | data[base] = (byte)(i>>24); |
| 497 | data[base+1] = (byte)(i>>16); |
| 498 | data[base+2] = (byte)(i>>8); |
| 499 | data[base+3] = (byte)i; |
| 500 | } |
| 501 | |
| 502 | |
| 503 | } |
no outgoing calls
no test coverage detected