| 142 | staticfn void wantdoor(coordxy, coordxy, genericptr_t); |
| 143 | |
| 144 | boolean |
| 145 | cursed_object_at(coordxy x, coordxy y) |
| 146 | { |
| 147 | struct obj *otmp; |
| 148 | |
| 149 | for (otmp = svl.level.objects[x][y]; otmp; otmp = otmp->nexthere) |
| 150 | if (otmp->cursed) |
| 151 | return TRUE; |
| 152 | return FALSE; |
| 153 | } |
| 154 | |
| 155 | int |
| 156 | dog_nutrition(struct monst *mtmp, struct obj *obj) |
no outgoing calls
no test coverage detected