| 891 | #undef ORC_LEADER |
| 892 | |
| 893 | staticfn boolean |
| 894 | maze_inbounds(coordxy x, coordxy y) |
| 895 | { |
| 896 | return (x >= 2 && y >= 2 |
| 897 | && x < gx.x_maze_max && y < gy.y_maze_max |
| 898 | /* isok() test is superfluous here (unless something has |
| 899 | clobbered the static *_maze_max variables) */ |
| 900 | && isok(x, y)); |
| 901 | } |
| 902 | |
| 903 | staticfn void |
| 904 | maze_remove_deadends(xint16 typ) |
no test coverage detected