Delete the contents of the given object. */
| 1172 | |
| 1173 | /* Delete the contents of the given object. */ |
| 1174 | void |
| 1175 | delete_contents(struct obj *obj) |
| 1176 | { |
| 1177 | struct obj *curr; |
| 1178 | |
| 1179 | while ((curr = obj->cobj) != 0) { |
| 1180 | obj_extract_self(curr); |
| 1181 | obfree(curr, (struct obj *) 0); |
| 1182 | } |
| 1183 | } |
| 1184 | |
| 1185 | /* called with two args on merge */ |
| 1186 | void |
no test coverage detected