clear the unpaid bit on all of the objects in the list */
| 316 | |
| 317 | /* clear the unpaid bit on all of the objects in the list */ |
| 318 | staticfn void |
| 319 | clear_unpaid(struct monst *shkp, struct obj *list) |
| 320 | { |
| 321 | while (list) { |
| 322 | clear_unpaid_obj(shkp, list); |
| 323 | list = list->nobj; |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | /* clear the no_charge bit on a single object and its contents */ |
| 328 | staticfn void |
no test coverage detected