| 336 | } |
| 337 | |
| 338 | writefunc GetWriteHandler(int32 a) { |
| 339 | if (RWWrap && a >= 0x8000) |
| 340 | return BWriteG[a - 0x8000]; |
| 341 | else |
| 342 | return BWrite[a]; |
| 343 | } |
| 344 | |
| 345 | void SetWriteHandler(int32 start, int32 end, writefunc func) { |
| 346 | int32 x; |
no outgoing calls
no test coverage detected