| 1599 | } |
| 1600 | |
| 1601 | boolean |
| 1602 | obj_here(struct obj *obj, coordxy x, coordxy y) |
| 1603 | { |
| 1604 | struct obj *otmp; |
| 1605 | |
| 1606 | for (otmp = svl.level.objects[x][y]; otmp; otmp = otmp->nexthere) |
| 1607 | if (obj == otmp) |
| 1608 | return TRUE; |
| 1609 | return FALSE; |
| 1610 | } |
| 1611 | |
| 1612 | struct obj * |
| 1613 | g_at(coordxy x, coordxy y) |
no outgoing calls
no test coverage detected