| 35 | staticfn void nokiller(void); |
| 36 | |
| 37 | boolean |
| 38 | is_waterwall(coordxy x, coordxy y) |
| 39 | { |
| 40 | if (isok(x, y) && IS_WATERWALL(levl[x][y].typ)) |
| 41 | return TRUE; |
| 42 | return FALSE; |
| 43 | } |
| 44 | |
| 45 | boolean |
| 46 | is_pool(coordxy x, coordxy y) |
no test coverage detected