| 632 | } |
| 633 | |
| 634 | int |
| 635 | count_justpicked(struct obj *olist) |
| 636 | { |
| 637 | struct obj *otmp; |
| 638 | int cnt = 0; |
| 639 | |
| 640 | for (otmp = olist; otmp; otmp = otmp->nobj) |
| 641 | if (otmp->pickup_prev) |
| 642 | cnt++; |
| 643 | |
| 644 | return cnt; |
| 645 | } |
| 646 | |
| 647 | struct obj * |
| 648 | find_justpicked(struct obj *olist) |
no outgoing calls
no test coverage detected