| 650 | } |
| 651 | |
| 652 | boolean |
| 653 | has_upstairs(struct mkroom *sroom) |
| 654 | { |
| 655 | stairway *stway = gs.stairs; |
| 656 | |
| 657 | while (stway) { |
| 658 | if (stway->up && inside_room(sroom, stway->sx, stway->sy)) |
| 659 | return TRUE; |
| 660 | stway = stway->next; |
| 661 | } |
| 662 | return FALSE; |
| 663 | } |
| 664 | |
| 665 | int |
| 666 | somex(struct mkroom *croom) |
no test coverage detected